/**
* Template Name: SnapFolio
* Template URL: https://bootstrapmade.com/snapfolio-bootstrap-portfolio-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# 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: #1f1f1f; /* 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: #232323; /* 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: #393939; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #393939; /* 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: #2c2c2c;
  --surface-color: #323232;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #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;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

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

.footer-main {
  padding: 48px 0 8px;
}

.footer .footer-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.footer .footer-title--sm {
  font-size: 16px;
  margin-top: 8px;
}

.footer .footer-desc {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer .footer-desc--sm {
  font-size: 13px;
  margin-bottom: 14px;
}

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

.footer .footer-list li {
  margin-bottom: 10px;
}

.footer .footer-list--marked li {
  position: relative;
  padding-left: 1.1rem;
}

.footer .footer-list--marked li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 35%)
  );
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: rotate(45deg);
}

.footer .footer-contact-list {
  margin: 20px 0 0;
  padding: 0;
}

.footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer .footer-contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 15px;
}

.footer .footer-contact-list a {
  color: color-mix(in srgb, var(--default-color), transparent 8%);
}

.footer .footer-contact-list a:hover {
  color: var(--accent-color);
}

.footer .footer-contact-text {
  display: block;
}

.footer .footer-zip {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0 0.4rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.footer .footer-list a {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 14px;
}

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

.footer .footer-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer .footer-list--inline li {
  margin-bottom: 0;
}

.footer .footer-newsletter-form .form-control {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-size: 14px;
  padding: 10px 14px;
}

.footer .footer-newsletter-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  opacity: 1;
}

.footer .footer-newsletter-form .form-control:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 35%);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: 0;
}

.footer .footer-newsletter-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-weight: 600;
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}

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

.footer .footer-unsub {
  margin-top: 12px;
  font-size: 13px;
}

.footer .footer-unsub a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

/*--------------------------------------------------------------
# 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 color-mix(in srgb, var(--surface-color), var(--default-color) 12%);
  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 .hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

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

.hero .hero-text .hero-subtitle .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 .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 .hero-subtitle {
    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 .hero-subtitle {
    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;
  }
}

/*--------------------------------------------------------------
# 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: var(--dark-accent-color);
}

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .stats .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

.stats .stats-item {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 5%), var(--surface-color));
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

.stats .stats-item:hover .icon-wrapper {
  transform: scale(1.1);
}

.stats .stats-item:nth-child(1) .icon-wrapper {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .stats-item:nth-child(1) .icon-wrapper i {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.stats .stats-item:nth-child(2) .icon-wrapper {
  background-color: color-mix(in srgb, #ff7e00, transparent 85%);
}

.stats .stats-item:nth-child(2) .icon-wrapper i {
  color: color-mix(in srgb, #ff7e00, transparent 10%);
}

.stats .stats-item:nth-child(3) .icon-wrapper {
  background-color: color-mix(in srgb, #00c875, transparent 85%);
}

.stats .stats-item:nth-child(3) .icon-wrapper i {
  color: color-mix(in srgb, #00c875, transparent 10%);
}

.stats .stats-item:nth-child(4) .icon-wrapper {
  background-color: color-mix(in srgb, #e83e8c, transparent 85%);
}

.stats .stats-item:nth-child(4) .icon-wrapper i {
  color: color-mix(in srgb, #e83e8c, transparent 10%);
}

.stats .stats-item .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.stats .stats-item .icon-wrapper i {
  font-size: 36px;
}

.stats .stats-item span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  font-family: var(--heading-font);
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skills-category {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

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

.skills .skills-category h3 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.skills .skills-category h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.skills .skill-item {
  margin-bottom: 25px;
}

.skills .skill-item:last-child {
  margin-bottom: 0;
}

.skills .skill-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.skills .skill-item .skill-percentage {
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.skills .skill-item .progress {
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.skills .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  transition: width 1.5s ease-in-out;
  width: 0;
  height: 100%;
  border-radius: 20px;
}

.skills .skill-item .skill-tooltip {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s;
}

.skills .skill-item:hover .skill-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.skills .skill-box {
  background-color: var(--surface-color);
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.skills .skill-box:hover {
  transform: translateY(-5px);
}

.skills .skill-box:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.skills .skill-box:hover .skill-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.skills .skill-box i {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.skills .skill-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.skills .skill-box .skill-tooltip {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s;
}

@media (max-width: 991.98px) {
  .skills .skills-category {
    margin-bottom: 30px;
  }

  .skills .skills-category:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .skills .skill-box {
    margin-bottom: 20px;
  }

  .skills .skill-box:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-side {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.resume .resume-side .profile-img {
  text-align: center;
}

.resume .resume-side .profile-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
}

.resume .resume-side h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-actions {
  margin: 1.25rem 0 1.75rem;
}

.resume .resume-actions--bottom {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.resume .resume-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resume .resume-download-btn: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%);
  color: var(--contrast-color);
}

.resume .resume-side .contact-info li {
  margin-bottom: 1rem;
  color: var(--default-color);
}

.resume .resume-side .contact-info li i {
  width: 25px;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.resume .resume-side .skill-item {
  margin-bottom: 1.5rem;
}

.resume .resume-side .skill-item span {
  font-size: 0.9rem;
  color: var(--default-color);
}

.resume .resume-side .skill-item .progress {
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.resume .resume-side .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  width: 0;
  transition: width 1s ease;
}

.resume .resume-section {
  margin-bottom: 3rem;
}

.resume .resume-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-section h3 i {
  color: var(--accent-color);
}

.resume .resume-section .resume-item {
  padding-left: 1.5rem;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-bottom: 2rem;
  position: relative;
}

.resume .resume-section .resume-item:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -9px;
  top: 0;
  background: var(--accent-color);
}

.resume .resume-section .resume-item.resume-item--hobby:before {
  top: 0.35rem;
}

.resume .resume-hobby-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.resume .resume-hobby-icon .resume-hobby-svg,
.resume .resume-hobby-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.resume .resume-hobby-icon img {
  max-height: 1.35rem;
  width: auto;
  display: block;
}

.resume .resume-hobby-copy {
  min-width: 0;
  flex: 1;
}

.resume .resume-hobby-copy h4 {
  margin-bottom: 0.35rem;
}

.resume .resume-section .resume-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-section .resume-item h4 a.certification-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.resume .resume-section .resume-item h4 a.certification-title-link:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.resume .resume-section .resume-item h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.resume .resume-section .resume-item .resume-line-inline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 0.5rem;
}

.resume .resume-section .resume-item .resume-line-inline > h4 {
  min-width: 0;
}

.resume .resume-section .resume-item .resume-line-inline .resume-date-range {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-color);
  text-align: right;
}

.resume .resume-section .resume-item .resume-line-inline .resume-project-name {
  min-width: 0;
  color: var(--heading-color);
}

.resume .resume-section .resume-item .resume-line-inline .resume-project-name:hover {
  color: var(--accent-color);
}

.resume .resume-section .resume-item .resume-line-inline--project {
  align-items: flex-start;
}

.resume .resume-section .resume-item .resume-project-stack {
  flex: 1;
  min-width: 0;
}

.resume .resume-section .resume-item .resume-project-card {
  display: block;
  padding: 0.45rem 0.55rem;
  margin: -0.45rem -0.55rem;
  border-radius: 0.35rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 88%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.resume .resume-section .resume-item .resume-project-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 88%);
}

.resume .resume-section .resume-item .resume-project-card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.resume .resume-section .resume-item .resume-project-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.6rem;
}

.resume .resume-section .resume-item .resume-project-card .resume-project-name {
  color: var(--heading-color);
}

.resume .resume-section .resume-item .resume-project-card:hover .resume-project-name {
  color: var(--accent-color);
}

.resume .resume-section .resume-item .resume-project-card__icon {
  font-size: 0.85rem;
  opacity: 0.75;
  color: var(--accent-color);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.resume .resume-section .resume-item .resume-project-card:hover .resume-project-card__icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

.resume .resume-section .resume-item .resume-project-excerpt {
  font-size: 0.82rem;
  line-height: 1.45;
  margin-top: 0.35rem;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.resume .resume-section .resume-item .company {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.resume .resume-section .resume-item .company i {
  margin-right: 0.5rem;
}

.resume .resume-section .resume-item ul {
  padding-left: 1.2rem;
}

.resume .resume-section .resume-item ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.resume .resume-section .resume-item p {
  color: var(--default-color);
  margin-bottom: 0;
}

/* Right-column timeline sections: section title flush left, body indented, slightly smaller type */
.resume .resume-section.resume-section--timeline > h3 {
  margin-bottom: 1rem;
  padding-left: 0;
}

.resume .resume-section.resume-section--timeline .resume-section__body {
  padding-inline-start: 1.35rem;
  font-size: 0.9375rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-section__empty {
  margin-bottom: 0;
  color: var(--default-color);
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item h4 {
  font-size: 1.1rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item h5 {
  font-size: 0.9rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item .resume-date-range {
  font-size: 0.9rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item .resume-project-card .resume-project-name {
  font-size: 1.05rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item .company {
  font-size: 0.9rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item .education-field-of-study {
  color: var(--default-color);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.resume .resume-section.resume-section--timeline .resume-section__body .resume-item ul li {
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .resume .resume-side {
    margin-bottom: 2rem;
  }
}

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

.blog .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) {
  .blog .filters-wrapper {
    padding: 20px;
  }
}

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

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

.blog .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) {
  .blog .portfolio-filters li {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-left-width: 3px;
  }
}

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

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

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

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

.blog .blog-post-card .portfolio-wrap img {
  height: 260px;
}

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

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

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

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

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

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

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

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

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

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

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

.blog .blog-post-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
}

.blog .blog-post-card .portfolio-wrap .blog-post-card-image-link {
  display: block;
  line-height: 0;
}

.blog .blog-post-card .portfolio-wrap {
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}

.blog .blog-post-card .portfolio-wrap:hover {
  transform: none;
}

.blog .blog-post-card .portfolio-wrap:hover img {
  transform: scale(1.04);
}

.blog .blog-post-card .portfolio-info.blog-post-card-media-meta {
  transform: translateY(0);
  opacity: 1;
  padding: 12px 14px 14px;
  pointer-events: none;
}

.blog .blog-post-card .portfolio-info.blog-post-card-media-meta a {
  pointer-events: auto;
}

.blog .blog-post-card .portfolio-info.blog-post-card-media-meta .content {
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.blog .blog-post-card .portfolio-info.blog-post-card-media-meta .category {
  margin-bottom: 0;
}

.blog .blog-post-card-overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.blog .blog-post-card-overlay-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  background-color: color-mix(in srgb, #fff, transparent 88%);
  border: 1px solid color-mix(in srgb, #fff, transparent 70%);
}

.blog .blog-post-card-overlay-tag:hover {
  color: #fff;
  background-color: color-mix(in srgb, var(--accent-color), transparent 35%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.blog .blog-filter-btn {
  border: 0;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog .blog-chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 992px) {
  .blog .blog-chip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog .blog-chip-grid.blog-section-category-filters-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  grid-template-columns: unset;
}

.blog .blog-chip-grid.blog-section-category-filters-horizontal .blog-chip {
  width: auto;
  flex: 0 1 auto;
  text-align: center;
  padding-left: 18px;
  padding-right: 18px;
}

.section-view-all-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.section-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-view-all: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%);
  color: var(--contrast-color);
}

.blog .blog-chip {
  width: 100%;
  text-align: left;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  color: var(--default-color);
  font-weight: 600;
  line-height: 1.2;
  min-height: 44px;
}

.blog .blog-chip:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--heading-color);
  transform: translateY(-1px);
}

.blog .blog-chip.filter-active,
.blog .blog-tag-chip.filter-active {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--heading-color);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog .blog-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.blog .blog-tag-chip {
  width: 100%;
  text-align: center;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.1;
  min-height: 40px;
}

.blog .blog-tag-chip:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--heading-color);
  transform: translateY(-1px);
}

.blog .blog-section-posts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog .blog-section-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog .blog-section-posts-grid > .blog-post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog .blog-post-card-footer {
  margin-top: 0;
  padding: 16px 18px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog .blog-post-card-footer-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  margin-bottom: 6px;
  text-decoration: none;
}

.blog .blog-post-card-footer-category:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 25%);
}

.blog .blog-post-card-footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
}

.blog .blog-post-card-footer-title a {
  color: var(--heading-color);
  text-decoration: none;
}

.blog .blog-post-card-footer-title a:hover {
  color: var(--accent-color);
}

.blog .blog-post-card-footer-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.blog .blog-post-card-footer-meta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  width: 100%;
}

.blog .blog-post-card-footer-meta .blog-post-card-footer-line {
  min-width: 0;
}

.blog .blog-post-card-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex-shrink: 1;
}

.blog .blog-post-card-stat i {
  flex-shrink: 0;
  font-size: 0.95rem;
  opacity: 0.72;
  color: var(--accent-color);
}

.blog .blog-post-card-stat span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

.blog .blog-post-card-excerpt {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .blog-post-card-footer-date {
  flex-shrink: 0;
  white-space: nowrap;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.blog .blog-post-card-footer-link {
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.blog .blog-post-card-footer-link:hover {
  text-decoration: underline;
}

.blog .blog-section-posts-grid .blog-post-card {
  --blog-card-delay: 0ms;
  transition:
    opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) var(--blog-card-delay),
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) var(--blog-card-delay),
    filter 0.32s cubic-bezier(0.4, 0, 0.2, 1) var(--blog-card-delay);
  will-change: opacity, transform, filter;
}

.blog .blog-section-posts-grid .blog-post-card.is-enter {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: blur(2px);
}

.blog .blog-section-posts-grid .blog-post-card.is-showing {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.blog .blog-section-posts-grid .blog-post-card.is-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .blog .blog-section-posts-grid .blog-post-card {
    transition: none;
    filter: none !important;
    transform: none !important;
  }

  .blog .blog-section-posts-grid .blog-post-card.is-enter,
  .blog .blog-section-posts-grid .blog-post-card.is-showing,
  .blog .blog-section-posts-grid .blog-post-card.is-hidden {
    opacity: 1;
    filter: none !important;
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# Reels Section
--------------------------------------------------------------*/
.reels .reel-card-inner {
  position: relative;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.reels .reel-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.reels .reel-card-media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.reels .reel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reels .reel-card-media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.15) 100%);
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reels .reel-card-inner:hover .reel-card-media-link {
  opacity: 1;
}

.reels .reel-card-inner:hover .reel-card-media img {
  transform: scale(1.05);
}

.reels .reel-card-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 12%);
  border: 2px solid color-mix(in srgb, #fff, transparent 35%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.reels .reel-card-body {
  padding: 16px 18px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.reels .reel-card-platform {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.reels .reel-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--heading-color);
}

.reels .reel-card-excerpt {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}

.reels .reel-card-date {
  margin: 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

@media (max-width: 768px) {
  .reels .reel-card-media {
    max-height: 320px;
  }
}

/*--------------------------------------------------------------
# CMS Sections (dynamic content from `sections` table)
--------------------------------------------------------------*/
.cms-section .cms-section-intro {
  max-width: 800px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.cms-section .cms-section-intro p:last-child {
  margin-bottom: 0;
}

.cms-section .cms-section-body {
  padding-bottom: 10px;
}

.cms-section .cms-section-body > :last-child {
  margin-bottom: 0;
}

/* FAQ accordion (CMS section `faq`, Bootstrap 5) — align with SnapFolio dark theme */
.cms-section .faq-accordion {
  --faq-radius: 14px;
  --faq-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --faq-bg: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

.cms-section .faq-accordion .accordion-item {
  margin-bottom: 12px;
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  overflow: hidden;
  background: var(--faq-bg);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

.cms-section .faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.cms-section .faq-accordion .accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  box-shadow: none;
  padding: 1rem 1.15rem;
}

.cms-section .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-bottom: 1px solid var(--faq-border);
}

.cms-section .faq-accordion .accordion-button::after {
  filter: brightness(1.35);
}

.cms-section .faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.cms-section .faq-accordion .accordion-body {
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  line-height: 1.65;
  padding: 1.1rem 1.25rem 1.25rem;
  background: color-mix(in srgb, var(--background-color), transparent 35%);
}

/* CMS page “sitemap” — architectural plan (PagesSeeder) */
.sitemap-arch-lead {
  max-width: 720px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 1.02rem;
  line-height: 1.65;
}

.sitemap-arch-card {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  box-shadow: 0 10px 32px color-mix(in srgb, var(--default-color), transparent 93%);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sitemap-arch-card-head {
  padding: 1rem 1.15rem 0.85rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.sitemap-arch-badge {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
}

.sitemap-arch-card-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.35;
}

.sitemap-arch-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem 1.1rem;
}

.sitemap-arch-list li {
  margin: 0;
  padding: 0.45rem 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 92%);
}

.sitemap-arch-list li:last-child {
  border-bottom: 0;
}

.sitemap-arch-list a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sitemap-arch-list a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 18%);
}

.sitemap-arch-list code {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-weight: 400;
}

.sitemap-arch-footnote {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 6%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CMS sitemap — roadmap tree (Blade partial), theme-aligned */
.cms-page__body .sitemap-roadmap .sitemap-roadmap__leaves,
.cms-page__body .sitemap-roadmap .sitemap-roadmap__leaves > li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.sitemap-roadmap__cols-scroll {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: color-mix(in srgb, var(--accent-color), transparent 35%) color-mix(in srgb, var(--surface-color), transparent 0%);
  padding-bottom: 4px;
}

.sitemap-roadmap {
  --sitemap-road: color-mix(in srgb, var(--default-color), transparent 76%);
  --sitemap-road-strong: color-mix(in srgb, var(--accent-color), transparent 45%);
  max-width: 100%;
}

.sitemap-roadmap__root-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.sitemap-roadmap__root {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: var(--contrast-color);
  text-decoration: none;
  background: color-mix(in srgb, var(--accent-color), transparent 8%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.sitemap-roadmap__root:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 4%);
}

.sitemap-roadmap__root .bi {
  font-size: 1.15rem;
  opacity: 0.95;
}

.sitemap-roadmap__stem {
  width: 2px;
  height: 26px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--sitemap-road-strong), var(--sitemap-road));
}

.sitemap-roadmap__cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(158px, 1fr));
  gap: 0.65rem;
  width: 100%;
  min-width: 980px;
  position: relative;
  padding-top: 22px;
  margin-top: 0;
}

.sitemap-roadmap__cols::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--sitemap-road);
  border-radius: 1px;
}

.sitemap-roadmap__col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.sitemap-roadmap__col-stem {
  width: 2px;
  height: 22px;
  margin: 0 auto;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--sitemap-road), var(--sitemap-road-strong));
}

.sitemap-roadmap__cat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  margin-bottom: 0.45rem;
}

.sitemap-roadmap__cat .bi {
  font-size: 1rem;
  opacity: 0.88;
  color: var(--accent-color);
}

.sitemap-roadmap__cat--blog {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 10%);
}

.sitemap-roadmap__cat--projects {
  border-color: color-mix(in srgb, var(--accent-color), transparent 78%);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 6%);
}

.sitemap-roadmap__cat--media {
  border-color: color-mix(in srgb, var(--default-color), transparent 82%);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 4%);
}

.sitemap-roadmap__cat--cms {
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 12%);
}

.sitemap-roadmap__cat--system {
  border-color: color-mix(in srgb, var(--default-color), transparent 84%);
  background: color-mix(in srgb, var(--surface-color), transparent 0%);
}

.sitemap-roadmap__leaves {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.sitemap-roadmap__leaf {
  display: block;
  padding: 0.42rem 0.55rem;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--default-color), transparent 4%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: color-mix(in srgb, var(--surface-color), transparent 0%);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.sitemap-roadmap__leaf:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--accent-color);
}

.sitemap-roadmap__leaf--pattern {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  border-style: dashed;
}

.sitemap-roadmap__leaf code {
  font-size: 0.72rem;
  font-weight: 400;
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  word-break: break-word;
}

@media (max-width: 1199px) {
  .cms-page__body--sitemap-roadmap .sitemap-roadmap__cols-scroll {
    margin-inline: -0.25rem;
    padding-inline: 0.25rem 0.75rem;
  }
}

/*--------------------------------------------------------------
# Teams Section
--------------------------------------------------------------*/
.teams .team-card-inner {
  position: relative;
  height: 100%;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 18px;
}

.teams .team-card-photo {
  padding: 20px 20px 0;
}

.teams .team-card-photo img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.teams .team-card-body {
  padding: 16px 18px 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams .team-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--heading-color);
}

.teams .team-card-position {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
}

.teams .team-card-bio {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  max-width: 100%;
}

.teams .team-card-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-top: auto;
}

.teams .team-card-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.teams .team-card-social:hover {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

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

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.contact .contact-form .btn {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
  color: var(--contrast-color);
}

.unsubscribe-page .btn-unsubscribe-submit {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.9rem 1.5rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.unsubscribe-page .btn-unsubscribe-submit:hover,
.unsubscribe-page .btn-unsubscribe-submit:focus-visible {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 18%);
  border-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 18%);
  color: var(--contrast-color);
}

.unsubscribe-page .btn-unsubscribe-submit:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 55%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

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

.portfolio-details .portfolio-details-slider img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul {
  padding: 0;
  list-style: none;
}

.portfolio-details .portfolio-info ul li {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul li:last-child {
  border-bottom: 0;
}

.portfolio-details .portfolio-info ul li strong {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.portfolio-details .portfolio-info ul li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.portfolio-details .portfolio-info ul li a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .portfolio-description .features h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.portfolio-details .portfolio-description .features .feature-item {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.portfolio-details .portfolio-description .features .feature-item:hover {
  transform: translateY(-5px);
}

.portfolio-details .portfolio-description .features .feature-item i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
}

.portfolio-details .portfolio-description .features .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.portfolio-details .portfolio-description .features .feature-item p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 991px) {
  .portfolio-details .portfolio-info {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

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

.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

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

.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
  transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
  margin-bottom: 25px;
}

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

.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Subtle Green Accents (Dark mode only)
--------------------------------------------------------------*/
body.dark {
  --dark-accent-color: #0d9488;
}

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

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

body.dark .hero .hero-actions .btn.btn-outline,
body.dark .about .cta-section .btn.btn-outline {
  color: var(--dark-accent-color);
  border-color: color-mix(in srgb, var(--dark-accent-color), transparent 35%);
}

body.dark .hero .hero-actions .btn.btn-outline:hover,
body.dark .about .cta-section .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--dark-accent-color), transparent 85%);
}

body.dark .header .social-links a:hover,
body.dark .hero .social-links a:hover,
body.dark .footer .social-links a:hover {
  background-color: var(--dark-accent-color);
  color: #0b1b14;
}

body.dark .contact .contact-form input:focus,
body.dark .contact .contact-form textarea:focus,
body.dark .unsubscribe-page .form-control:focus {
  border-color: color-mix(in srgb, var(--dark-accent-color), transparent 30%);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dark-accent-color), transparent 82%);
}

body.dark .skills .skill-item .progress .progress-bar,
body.dark .resume .resume-side .skill-item .progress .progress-bar {
  background-color: var(--dark-accent-color);
}

body.dark .scroll-top {
  background-color: var(--dark-accent-color);
}

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

.page-title-breadcrumb .breadcrumb-item,
.page-title-breadcrumb .breadcrumb-item.active,
.page-title-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: color-mix(in srgb, #ffffff, transparent 18%);
}

.page-title-breadcrumb .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
}

.page-title-breadcrumb .breadcrumb-item a:hover {
  color: color-mix(in srgb, #ffffff, transparent 18%);
}

@media (min-width: 1200px) {
  .header~main .page-title.page-title-full-bleed {
    width: calc(100% + 330px);
    margin-left: -330px;
    margin-right: 0;
  }

  body.rtl .header~main .page-title.page-title-full-bleed {
    margin-left: 0;
    margin-right: -330px;
  }
}

.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {

  .service-details .service-info,
  .service-details .related-services {
    margin-top: 30px;
  }
}

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

/*--------------------------------------------------------------
# Scroll progress (horizontal reading bar)
--------------------------------------------------------------*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.scroll-progress__fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 0 3px 3px 0;
    transform-origin: left center;
    background: var(--dark-accent-color);
    box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 55%);
    will-change: width;
    transition: width 0.15s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress__fill {
        transition: none;
        will-change: auto;
    }
}

/*--------------------------------------------------------------
# Theme: light / dark / system (default = system → OS preference)
--------------------------------------------------------------*/

/* Forced light palette — simple neutrals + teal accent, high readability */
body.light {
  color-scheme: light;
  --background-color: #f1f5f9;
  --default-color: #334155;
  --heading-color: #0f172a;
  --accent-color: #0d9488;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: rgba(15, 23, 42, 0.58);
  --nav-hover-color: #0f172a;
  --nav-mobile-background-color: #e2e8f0;
  --nav-dropdown-background-color: #f8fafc;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: #0d9488;
}

body.light .header {
  --background-color: #ffffff;
  --contrast-color: #0f172a;
}

body.light .light-background {
  --background-color: #e2e8f0;
  --surface-color: #f8fafc;
}

@media (prefers-color-scheme: light) {
  body.system {
    color-scheme: light;
    --background-color: #f1f5f9;
    --default-color: #334155;
    --heading-color: #0f172a;
    --accent-color: #0d9488;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: rgba(15, 23, 42, 0.58);
    --nav-hover-color: #0f172a;
    --nav-mobile-background-color: #e2e8f0;
    --nav-dropdown-background-color: #f8fafc;
    --nav-dropdown-color: #334155;
    --nav-dropdown-hover-color: #0d9488;
  }

  body.system .header {
    --background-color: #ffffff;
    --contrast-color: #0f172a;
  }

  body.system .light-background {
    --background-color: #e2e8f0;
    --surface-color: #f8fafc;
  }
}

@media (prefers-color-scheme: dark) {
  body.system {
    color-scheme: dark;
  }
}

body.dark {
  color-scheme: dark;
}

/* Blank layout (coming-soon, unsubscribe, …) — back arrow follows theme */
.blank-home-arrow {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--heading-color);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  font-size: 22px;
  line-height: 1;
}

body.dark .blank-home-arrow {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

@media (prefers-color-scheme: dark) {
  body.system .blank-home-arrow {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }
}
