/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #660000; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ececec; /* 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: #990000; /* 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: #310606; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #1b1b1b;
  --contrast-color: #444444;
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
}

.header .header-container {
  border-radius: 20px;
  padding: 15px;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.header .social-links {
  margin: 0 0 10px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

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

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 330px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

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

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

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

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

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

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

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

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

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

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

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

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  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);
}

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

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

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.page-title .container {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 25px;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero .background-elements .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  animation: float 6s ease-in-out infinite;
}

.hero .background-elements .bg-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero .background-elements .bg-circle.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero .hero-content {
  position: relative;
  width: 100%;
  z-index: 2;
}

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

.hero .hero-text h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

.hero .hero-text h1 .accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.hero .hero-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.hero .hero-text .lead {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--default-color);
}

.hero .hero-text .lead span {
  color: var(--accent-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.hero .hero-text .description {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

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

.hero .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .social-links {
  display: flex;
  gap: 20px;
}

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

.hero .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero .hero-visual .profile-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero .hero-visual .profile-container .profile-background {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  z-index: 1;
}

.hero .hero-visual .profile-container .profile-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 2;
}

@keyframes float {

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

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

@keyframes floatIcon {

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

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

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

  .hero .hero-text h1 {
    font-size: 56px;
  }

  .hero .hero-text h2 {
    font-size: 28px;
  }

  .hero .hero-text .lead {
    font-size: 20px;
  }

  .hero .hero-visual .profile-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 42px;
  }

  .hero .hero-text h2 {
    font-size: 24px;
  }

  .hero .hero-text .lead {
    font-size: 18px;
  }

  .hero .hero-text .description {
    font-size: 16px;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero .hero-actions .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero .hero-visual .profile-container {
    width: 300px;
    height: 300px;
  }

  .hero .background-elements .bg-circle.circle-1 {
    width: 200px;
    height: 200px;
  }

  .hero .background-elements .bg-circle.circle-2 {
    width: 150px;
    height: 150px;
  }

  .hero .background-elements .bg-circle.circle-3 {
    width: 100px;
    height: 100px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .profile-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.about .profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

@media (max-width: 991px) {
  .about .profile-card {
    margin-bottom: 3rem;
  }
}

.about .profile-header {
  position: relative;
  margin-bottom: 2rem;
}

.about .profile-header .profile-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about .profile-header .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .profile-header .profile-badge {
  position: absolute;
  bottom: 20px;
  right: calc(50% - 65px);
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--surface-color);
}

.about .profile-header .profile-badge i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .profile-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .profile-content .profession {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.about .contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about .contact-links .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .contact-links .contact-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .contact-links .contact-item i {
  font-size: 1rem;
  width: 18px;
}

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

@media (max-width: 991px) {
  .about .about-content {
    padding-left: 0;
  }
}

.about .about-content .section-header {
  margin-bottom: 2rem;
}

.about .about-content .section-header .badge-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.about .about-content .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .about .about-content .section-header h2 {
    font-size: 1.875rem;
  }
}

.about .about-content .description {
  margin-bottom: 2.5rem;
}

.about .about-content .description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

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

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

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

.about .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

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

.about .details-grid {
  margin-bottom: 2.5rem;
}

.about .details-grid .detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .details-grid .detail-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .details-grid .detail-row:last-child {
  margin-bottom: 0;
}

.about .details-grid .detail-item .detail-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about .details-grid .detail-item .detail-value {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about .cta-section .btn {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

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

.about .cta-section .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .cta-section .btn.btn-outline {
  background-color: transparent;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.about .cta-section .btn.btn-outline:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .portfolio .filter-sidebar {
    margin-bottom: 30px;
  }
}

.portfolio .filters-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .portfolio .filters-wrapper {
    padding: 20px;
  }
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .portfolio .portfolio-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  background: transparent;
  position: relative;
  border-left: 3px solid transparent;
}

@media (max-width: 991px) {
  .portfolio .portfolio-filters li {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-left-width: 3px;
  }
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: var(--accent-color);
  font-weight: 600;
}

.portfolio .portfolio-wrap {
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.portfolio .portfolio-wrap img {
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.portfolio .portfolio-wrap .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info .content {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
}

.portfolio .portfolio-wrap .portfolio-info .category {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 12px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio .portfolio-wrap:hover {
  transform: translateY(-5px);
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.08);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info .content {
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Post List Section
--------------------------------------------------------------*/
.post-list .title-wrap {
  padding-bottom: 30px;
}

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

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

.post-list .post-entry .thumb {
  margin-bottom: 20px;
}

.post-list .post-entry .thumb img {
  transition: 0.3s all ease;
}

.post-list .post-entry .thumb:hover img {
  opacity: 0.8;
}

.post-list .post-entry .meta {
  font-size: 12px;
  margin-bottom: 20px;
}

.post-list .post-entry .meta .cat {
  text-transform: uppercase;
  font-weight: normal;
  color: var(--heading-color);
}

.post-list .post-entry .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.post-list .post-entry .post-content {
  padding-left: 30px;
  padding-right: 30px;
}

.post-list .post-entry .post-content h3 {
  font-size: 18px;
  line-height: 1.2;
}

.post-list .post-entry .post-content h3 a {
  color: var(--heading-color);
}

.post-list .post-entry .post-content h3 a:hover {
  color: var(--accent-color);
}

.post-list .author .pic {
  flex: 0 0 50px;
  margin-right: 20px;
}

.post-list .author .author-name {
  line-height: 1.3;
}

.post-list .author .author-name strong {
  color: var(--heading-color);
  font-weight: normal;
}

.post-list .author .author-name span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

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

.service-details .service-content .service-hero .service-image {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.service-details .service-content .service-description .service-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-details .service-content .service-description .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

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

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

.service-details .service-content .service-features h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-details .service-content .service-features .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.service-details .service-content .service-features .feature-item .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-features .feature-item .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .service-content .service-process h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-process .process-timeline .process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .service-content .service-process .process-timeline .process-step .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content {
  flex: 1;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

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

.service-details .service-sidebar .sidebar-widget h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-info .service-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-info .service-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-details .service-sidebar .service-info .service-details-list li:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .service-details-list li strong {
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item i {
  font-size: 16px;
  width: 20px;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item span {
  font-size: 0.95rem;
}

.service-details .service-sidebar .cta-widget {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-widget .cta-content {
  text-align: center;
}

.service-details .service-sidebar .cta-widget .cta-content h4 {
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.service-details .service-sidebar .cta-widget .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
}

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

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

.service-details .service-sidebar .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  width: 24px;
}

.service-details .service-sidebar .contact-info .contact-item div strong {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-info .contact-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

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

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

  .service-details .service-content .service-hero .service-image {
    height: 300px;
  }

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

  .service-details .service-content .service-description .service-title {
    font-size: 2rem;
  }

  .service-details .service-content .service-description .lead {
    font-size: 1.1rem;
  }

  .service-details .service-content .service-features,
  .service-details .service-content .service-process {
    margin-bottom: 60px;
  }

  .service-details .service-content .service-features h3,
  .service-details .service-content .service-process h3 {
    font-size: 1.7rem;
  }

  .service-details .service-content .process-timeline .process-step {
    gap: 16px;
  }

  .service-details .service-content .process-timeline .process-step:not(:last-child)::after {
    left: 19px;
  }

  .service-details .service-content .process-timeline .process-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }

  .service-details .service-sidebar .sidebar-widget {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding: 96px 0 120px;
}

.about-2 .intro {
  margin-bottom: 64px;
}

.about-2 .intro h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-2 .intro .lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 540px;
  margin: 0 auto;
}

.about-2 .image-block {
  margin-bottom: 0;
}

.about-2 .image-block img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.about-2 .stats-strip {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 48px 0;
}

@media (max-width: 576px) {
  .about-2 .stats-strip {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}

.about-2 .stats-strip .stat-item {
  text-align: center;
  flex: 1;
}

.about-2 .stats-strip .stat-item h3 {
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.about-2 .stats-strip .stat-item p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0;
}

.about-2 .description {
  margin-bottom: 48px;
}

.about-2 .description p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about-2 .cta-block {
  margin-top: 0;
}

.about-2 .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Products List 2 Section
--------------------------------------------------------------*/
.products-list-2 .filters .isotope-filters {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.products-list-2 .filters .isotope-filters li {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  cursor: pointer;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.3s;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 50px;
}

.products-list-2 .filters .isotope-filters li:hover {
  color: var(--accent-color);
}

.products-list-2 .filters .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.products-list-2 .filters .dropdown .btn {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
}

.products-list-2 .filters .dropdown .btn:hover {
  color: var(--accent-color);
}

.products-list-2 .filters .dropdown .btn:after {
  margin-left: 0.5em;
}

.products-list-2 .filters .dropdown .dropdown-menu {
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
}

.products-list-2 .filters .dropdown .dropdown-menu .dropdown-item {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s;
}

.products-list-2 .filters .dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.products-list-2 .product-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-list-2 .product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.products-list-2 .product-card:hover .img-wrap .actions {
  opacity: 1;
  visibility: visible;
}

.products-list-2 .product-card:hover .add-to-cart-btn {
  background: color-mix(in srgb, var(--accent-color) 80%, transparent);
}

.products-list-2 .product-card .img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.products-list-2 .product-card .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  background: color-mix(in srgb, var(--heading-color) 5%, transparent);
}

.products-list-2 .product-card .img-wrap .actions {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.products-list-2 .product-card .img-wrap .actions .quick-view-btn {
  background: var(--surface-color);
  color: var(--heading-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
}

.products-list-2 .product-card .img-wrap .actions .quick-view-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.products-list-2 .product-card .content {
  padding: 1.5rem;
}

.products-list-2 .product-card .content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.products-list-2 .product-card .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.products-list-2 .product-card .content .info .ratings {
  color: #ffc107;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.products-list-2 .product-card .content .info .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.products-list-2 .product-card .content .add-to-cart-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .products-list-2 .filters .isotope-filters {
    gap: 0.5rem;
  }

  .products-list-2 .filters .isotope-filters li {
    padding: 6px 15px;
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .products-list-2 .product-card .content {
    padding: 1rem;
  }

  .products-list-2 .product-card .content h3 {
    font-size: 15px;
    min-height: 40px;
  }

  .products-list-2 .product-card .content .info .price {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-images {
  position: relative;
  margin-bottom: 2rem;
}

.product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
}

.product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

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

.product-details .product-images .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.product-details .product-images .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.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;
  }
}

.product-details .product-images .product-thumbnails {
  margin-top: 1rem;
}

.product-details .product-images .product-thumbnails .swiper-wrapper {
  height: auto !important;
}

.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;
}

.product-details .product-images .product-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}

.product-details .product-images .product-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-details .product-images .product-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-details .product-images .product-thumbnails .swiper-button-next,
.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);
}

.product-details .product-images .product-thumbnails .swiper-button-next::after,
.product-details .product-images .product-thumbnails .swiper-button-prev::after {
  font-size: 14px;
}

.product-details .product-info {
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .product-details .product-info {
    padding: 0 1rem;
  }
}

.product-details .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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;
}

.product-details .product-info .product-meta .product-rating {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-meta .product-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.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;
}

.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) {
  .product-details .product-info .product-title {
    font-size: 2rem;
  }
}

.product-details .product-info .product-price-container {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-price-container .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
}

.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;
}

.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;
}

.product-details .product-info .product-short-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-info .product-availability {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-availability i {
  margin-right: 0.5rem;
}

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

.product-details .product-info .product-colors .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-colors .color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.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;
}

.product-details .product-info .product-colors .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details .product-info .product-colors .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details .product-info .product-colors .color-options .color-option.active i {
  opacity: 1;
}

.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;
}

.product-details .product-info .product-colors .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info .product-sizes .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-sizes .size-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.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;
}

.product-details .product-info .product-sizes .size-options .size-option:hover {
  border-color: var(--accent-color);
}

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

.product-details .product-info .product-sizes .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info .product-quantity .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-quantity .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.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;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.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;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .product-info .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.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;
}

.product-details .product-info .product-actions .btn i {
  margin-right: 0.5rem;
}

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

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

.product-details .product-info .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .product-info .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info .product-actions .wishlist-btn {
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.125rem;
}

.product-details .product-info .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
}

@media (max-width: 575px) {
  .product-details .product-info .product-actions {
    flex-direction: column;
    justify-content: center;
  }

  .product-details .product-info .product-actions .wishlist-btn {
    align-self: center;
  }
}

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

.product-details .product-info .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-info .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  margin-right: 0.75rem;
}

.product-details .product-info .additional-info .info-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-tabs {
  margin-top: 3rem;
}

.product-details .product-details-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.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;
}

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

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

.product-details .product-details-tabs .tab-content {
  padding: 1rem 0;
}

.product-details .product-details-tabs .tab-content h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.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;
}

.product-details .product-details-tabs .tab-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.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;
}

.product-details .product-details-tabs .product-specifications .specs-group {
  margin-bottom: 2rem;
}

.product-details .product-details-tabs .product-specifications .specs-group h4 {
  margin-bottom: 1rem;
}

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

.product-details .product-details-tabs .product-specifications .specs-table .specs-row:last-child {
  border-bottom: none;
}

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

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

.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) {
  .product-details .product-details-tabs .product-reviews .reviews-summary {
    flex-direction: row;
  }
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
  margin-right: 2px;
}

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

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

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

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

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
}

.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;
}

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

.product-details .product-details-tabs .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.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;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.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;
}

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

.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;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.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;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type=radio]:checked~label i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.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;
}

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

.product-details .product-details-tabs .product-reviews .reviews-list h4 {
  margin-bottom: 1.5rem;
}

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

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.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;
}

.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;
}

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

.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;
}

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

.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;
}

.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;
}

.product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Post List 2 Section
--------------------------------------------------------------*/
.post-list-2 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.post-list-2 .post-img img {
  transition: 0.5s;
}

.post-list-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;
}

.post-list-2 .post-content {
  padding: 30px;
}

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

.post-list-2 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

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

.post-list-2 p {
  margin-top: 20px;
}

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

.post-list-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%);
}

.post-list-2 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

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

.post-list-2 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  padding-bottom: 30px;
}

.post-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.post-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.post-details .content {
  margin-top: 20px;
}

.post-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.post-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.post-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.post-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.post-details .meta-top ul li+li {
  padding-left: 20px;
}

.post-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

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

.post-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.post-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

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

.post-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.post-details .meta-bottom .cats li {
  display: inline-block;
}

.post-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.post-details .meta-bottom .tags li {
  display: inline-block;
}

.post-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.post-details .meta-bottom .share {
  font-size: 16px;
}

.post-details .meta-bottom .share i {
  padding-left: 5px;
}