@charset "UTF-8";

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;

    /* Background color for the entire website, including individual sections */
    --default-color: #555555;

    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #333333;

    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #000000;

    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;

    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;

    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #555555;

    /* The default color of the main navmenu links */
    --nav-hover-color: #000000;

    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #fafafa;

    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;

    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #8f8f8f;

    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #000000;

    /* 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: #fafafa;
    --surface-color: #ffffff;
}

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

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

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

a {
    color: #f5f5f5;
    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 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Global Footer
-------------------------------------------------------------- */
.footer {
    --background-color: #364146;
    --default-color: #ffffff;
    --heading-color: #f3f6f4;
    --accent-color: #ffffff;
    color: var(--default-color);
    background-color: #18252e;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

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

.footer .footer-about .logo {
    line-height: 1;
    padding: 0;
    margin: 0 0 5px;
}

.footer .footer-about .logo img {
    max-height: 75px;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.footer .footer-about p {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

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

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

.footer .footer-links {
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%;
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

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

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

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

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

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

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

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

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

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

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

/* --------------------------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------------------------- */
.page-title {
    color: var(--default-color);
    padding: 25px 0;
    position: relative;
    background-position: center center;
    background: linear-gradient(to left, #16222A 0%, #3A6073 100%);
}

.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: 30px 0;
    overflow: clip;
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.section-title p {
    margin-bottom: 11px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */
.hero {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 120px;

    /* Typographic system for hero */
    /* CTAs */
    /* Meta row */
    /* Portrait block */
    /* Gentle section visual calm */
    /* Spacing rhythm */
    /* Subtle parallax simulation for large screens */
    /* Responsive refinements */
}

.hero .intro .eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    flex: 0 0 auto;
}

.hero .intro .eyebrow .text {
    font-family: var(--nav-font);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .intro .display-heading {
    font-family: var(--heading-font);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.hero .intro .lead {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    max-width: 58ch;
}

.hero .btn-ghost {
    --_border: color-mix(in srgb, var(--default-color), transparent 80%);
    --_hover: color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 1px solid var(--_border);
    color: var(--default-color);
    background-color: var(--surface-color);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 90%);
    outline: none;
}

.hero .btn-ghost:active {
    transform: translateY(1px);
}

.hero .link-underline {
    position: relative;
    color: var(--accent-color);
    font-weight: 400;
    padding-bottom: 2px;
    transition: color 0.3s ease-in-out;
}

.hero .link-underline:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.hero .link-underline:hover,
.hero .link-underline:focus {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    outline: none;
    border-radius: 4px;
}

.hero .link-underline:hover:after,
.hero .link-underline:focus:after {
    transform: scaleX(1);
    background: var(--accent-color);
}

.hero .meta .meta-item {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .meta .meta-item i {
    color: var(--accent-color);
}

.hero .portrait-wrap .portrait-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
    transform: translateZ(0);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.hero .portrait-wrap:hover .portrait-img {
    transform: scale(1.015);
    box-shadow: 0 28px 80px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .portrait-wrap .badge.note {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), var(--surface-color) 85%);
    color: var(--default-color);
    font-size: 13px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .portrait-wrap .badge.note i {
    color: var(--accent-color);
}

section .hero {
    background: var(--background-color);
}

.hero .cta-group {
    gap: 16px;
}

@media (min-width: 992px) {
    .hero .portrait-wrap {
        will-change: transform;
    }
}

@media (max-width: 992px) {
    .hero .intro .lead {
        font-size: 17px;
    }

    .hero .portrait-wrap .badge.note {
        transform: scale(0.95);
    }
}

@media (max-width: 576px) {
    .hero .intro .display-heading {
        font-size: 34px;
    }

    .hero .cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------
# About Section
-------------------------------------------------------------- */
.about {
    /* Layout rhythm */
    --maxw: 1200px;
    --space-1: 16px;
    --space-2: 24px;
    --space-3: 40px;
    --space-4: 64px;
    --radius-s: 6px;
    --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
    padding-top: 15px;
    padding-bottom: 15px;
}

.about .container {
    max-width: var(--maxw);
}

.about .intro-wrap {
    margin-bottom: var(--space-4);
}

.about .intro-content .eyebrow {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: var(--space-1);
}

.about .intro-content .headline {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    font-size: (10px, 4vw, 44px);
    margin: 0 0 var(--space-2) 0;
}

.about .intro-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: var(--space-2);
}

.about .intro-content p {
    line-height: 1.8;
    margin-bottom: var(--space-2);
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.about .intro-content .cta-group {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    margin-top: var(--space-2);
}

.about .intro-content .cta-group .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: var(--radius-s);
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .btn-ghost:hover,
.about .intro-content .cta-group .btn-ghost:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .intro-content .cta-group .link-underline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--accent-color);
    padding-bottom: 4px;
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline:hover,
.about .intro-content .cta-group .link-underline:focus {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    outline: none;
}

.about .intro-content .cta-group .link-underline:hover::after,
.about .intro-content .cta-group .link-underline:focus::after {
    transform: scaleX(1);
}

.about .profile-figure {
    margin: 0;
}

.about .profile-figure .profile-photo {
    width: 88%;
    max-width: 440px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.about .profile-figure .profile-caption {
    margin-top: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.about .profile-figure .profile-caption .signature {
    max-width: 160px;
    filter: grayscale(100%);
    opacity: 0.85;
}

.about .profile-figure .profile-caption .meta {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .profile-figure .profile-caption .meta .funfact {
    font-size: 13px;
    margin-top: 4px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.about .profile-figure:hover .profile-photo {
    transform: translateY(-4px);
}

.about .skills-wrap {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.about .skills-wrap .skill-item {
    padding: var(--space-2);
    border-radius: var(--radius-s);
    transition: 0.3s ease-in-out;
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    height: 100%;
}

.about .skills-wrap .skill-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: var(--space-1);
    display: inline-block;
}

.about .skills-wrap .skill-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.about .skills-wrap .skill-item p {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-family: 'Roboto', sans-serif;
}

.about .skills-wrap .skill-item:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: var(--shadow-soft);
}

.about .journey-wrap {
    margin-bottom: var(--space-4);
}

.about .journey-wrap .timeline-item {
    position: relative;
    padding-left: 26px;
}

.about .journey-wrap .timeline-item time {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    margin-bottom: 6px;
}

.about .journey-wrap .timeline-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 6px;
}

.about .journey-wrap .timeline-item p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.about .journey-wrap .timeline-item .dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .personal-quote {
    margin: var(--space-3) 0 var(--space-4);
    padding: var(--space-2) 0;
    text-align: center;
}

.about .personal-quote p {
    font-family: var(--heading-font);
    font-weight: 300;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    margin: 0 auto;
    max-width: 800px;
}

.about .facts-wrap .fact-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    background: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    transition: 0.3s ease-in-out;
}

.about .facts-wrap .fact-pill i {
    color: var(--accent-color);
}

.about .facts-wrap .fact-pill span {
    font-size: 14px;
}

.about .facts-wrap .fact-pill:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: var(--shadow-soft);
}

.about .facts-wrap .fact-pill:focus-within {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
    .about .profile-figure {
        text-align: center !important;
    }

    .about .profile-figure .profile-photo {
        width: 72%;
    }

    .about .intro-content .cta-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .about .profile-figure .profile-photo {
        width: 100%;
    }

    .about .skills-wrap {
        margin-top: var(--space-3);
    }
}

/* --------------------------------------------------------------
# Skills Section
-------------------------------------------------------------- */
.skills {
    padding-top: 60px;
    padding-bottom: 60px;

    /* Design tokens for this section */
    --radius: 8px;
    --muted: color-mix(in srgb, var(--default-color), transparent 65%);
    --soft-border: color-mix(in srgb, var(--default-color), transparent 85%);
    --soft-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 94%);
    --accent-soft: color-mix(in srgb, var(--accent-color), var(--background-color) 85%);

    /* Focus styles for accessibility */
    /* Subtle divider behavior via spacing rhythm */
    /* Swiper compatibility snippet (kept global for any future slider inside) */
    /* Responsive tweaks */
}

.skills .skill-block {
    padding: 22px 6px 6px 6px;
    border-radius: var(--radius);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.skills .skill-block:hover {
    transform: translateY(-2px);
}

.skills .skill-block header .skill-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.skills .skill-block header .skill-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.skills .skill-block .skill-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.skills .skill-block .progress.slim {
    height: 6px;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 999px;
    overflow: hidden;
}

.skills .skill-block .progress.slim .progress-bar {
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
    transition: width 0.6s ease-in-out;
}

.skills .soft-card {
    background: var(--surface-color);
    border: 1px solid var(--soft-border);
    box-shadow: var(--soft-shadow);
}

.skills .soft-card .mini-head {
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.skills .soft-card .tool-list li {
    padding: 8px 0;
    border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}

.skills .soft-card .tool-list li:last-child {
    border-bottom: 0;
}

.skills .soft-card .tool-list li i {
    color: var(--accent-color);
    font-size: 18px;
    line-height: 1;
}

.skills .soft-card .tool-list li span {
    color: var(--default-color);
}

.skills .note {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.skills a:focus-visible,
.skills button:focus-visible,
.skills .skill-block:focus-visible,
.skills .soft-card:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: calc(var(--radius) - 2px);
}

.skills .alt-grid {
    margin-top: 60px;
}

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

@media (max-width: 992px) {
    .skills .intro-wrap .headline {
        font-size: clamp(26px, 4.2vw, 36px);
    }
}

@media (max-width: 768px) {
    .skills .soft-card {
        padding: 24px !important;
    }

    .skills .skill-block {
        padding-top: 18px;
    }
}

/* --------------------------------------------------------------
# Resume Section
-------------------------------------------------------------- */
.resume .resume-navigation {
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 2rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border: none;
}

@media (max-width: 992px) {
    .resume .resume-navigation {
        padding: 0;
    }
}

.resume .resume-navigation .nav-item .nav-link {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    color: var(--default-color);
}

.resume .resume-navigation .nav-item .nav-link .nav-number {
    font-size: 0.875rem;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: color 0.3s ease;
}

.resume .resume-navigation .nav-item .nav-link .nav-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--default-color);
    transition: color 0.3s ease;
}

.resume .resume-navigation .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
}

.resume .resume-navigation .nav-item .nav-link:hover,
.resume .resume-navigation .nav-item .nav-link.active {
    background: none;
    border: none;
    box-shadow: none;
}

.resume .resume-navigation .nav-item .nav-link:hover .nav-number,
.resume .resume-navigation .nav-item .nav-link.active .nav-number {
    color: var(--accent-color);
}

.resume .resume-navigation .nav-item .nav-link:hover .nav-label,
.resume .resume-navigation .nav-item .nav-link.active .nav-label {
    color: var(--accent-color);
}

.resume .resume-navigation .nav-item .nav-link:hover::after,
.resume .resume-navigation .nav-item .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.resume .resume-navigation .nav-item .nav-link:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 992px) {
    .resume .resume-navigation .nav-item .nav-link::after {
        display: none;
    }
}

.resume .resume-content .tab-pane {
    min-height: 400px;
}

.resume .resume-content .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.resume .resume-content .section-intro h2 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.resume .resume-content .section-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 300;
}

.resume .experience-grid {
    max-width: 800px;
    margin: 0 auto;
}

.resume .experience-grid .experience-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.resume .experience-grid .experience-item:last-child {
    border-bottom: none;
}

.resume .experience-grid .experience-item .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.resume .experience-grid .experience-item .item-header .position-info h3 {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.resume .experience-grid .experience-item .item-header .position-info .company {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 400;
}

.resume .experience-grid .experience-item .item-header .period {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 300;
    white-space: nowrap;
    margin-left: 2rem;
}

.resume .experience-grid .experience-item .item-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
    font-weight: 300;
}

.resume .education-list {
    max-width: 700px;
    margin: 0 auto;
}

.resume .education-list .education-entry {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.resume .education-list .education-entry:last-child {
    border-bottom: none;
}

.resume .education-list .education-entry .degree-year {
    flex-shrink: 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--accent-color);
    width: 80px;
}

.resume .education-list .education-entry .degree-details {
    flex: 1;
}

.resume .education-list .education-entry .degree-details h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.resume .education-list .education-entry .degree-details .institution {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1rem;
    font-weight: 300;
}

.resume .education-list .education-entry .degree-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
    font-weight: 300;
}

.resume .skills-categories {
    max-width: 800px;
    margin: 0 auto;
}

.resume .skills-categories .skill-category {
    margin-bottom: 3rem;
}

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

.resume .skills-categories .skill-category h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resume .skills-categories .skill-category .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.resume .skills-categories .skill-category .skill-tags .skill-tag {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--default-color);
    border-radius: 0;
    transition: all 0.3s ease;
}

.resume .skills-categories .skill-category .skill-tags .skill-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .resume .resume-navigation {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .resume .resume-navigation .nav-item .nav-link {
        padding: 0.75rem 1rem;
    }

    .resume .resume-navigation .nav-item .nav-link .nav-label {
        font-size: 0.9rem;
    }

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

    .resume .section-intro h2 {
        font-size: 1.875rem;
    }

    .resume .section-intro p {
        font-size: 1rem;
    }

    .resume .experience-grid .experience-item .item-header {
        flex-direction: column;
        gap: 1rem;
    }

    .resume .experience-grid .experience-item .item-header .period {
        margin-left: 0;
    }

    .resume .education-list .education-entry {
        gap: 2rem;
    }

    .resume .education-list .education-entry .degree-year {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .resume .resume-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .resume .resume-navigation .nav-item {
        width: 100%;
    }

    .resume .resume-navigation .nav-item .nav-link {
        justify-content: center;
        width: 100%;
    }

    .resume .education-list .education-entry {
        flex-direction: column;
        gap: 0.5rem;
    }

    .resume .skills-categories .skill-category .skill-tags {
        gap: 0.75rem;
    }

    .resume .skills-categories .skill-category .skill-tags .skill-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .resume .section-intro h2 {
        font-size: 1.625rem;
    }

    .resume .experience-grid .experience-item {
        padding: 2rem 0;
    }

    .resume .experience-grid .experience-item .item-header .position-info h3 {
        font-size: 1.25rem;
    }

    .resume .skills-categories .skill-category .skill-tags .skill-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .resume .resume-navigation .nav-item .nav-link {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .resume .resume-navigation .nav-item .nav-link .nav-number {
        font-size: 0.75rem;
    }

    .resume .resume-navigation .nav-item .nav-link .nav-label {
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------------
# Portfolio Section
-------------------------------------------------------------- */
.portfolio .portfolio-filters-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio .portfolio-filters {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.portfolio .portfolio-filters::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
    position: relative;
    cursor: pointer;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.4s ease-out;
    letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
    color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
    color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .portfolio .portfolio-filters {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.portfolio .portfolio-card {
    background: var(--surface-color);
    transition: all 0.4s ease-out;
    overflow: hidden;
}

.portfolio .portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
    transform: scale(1.05);
}

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

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

.portfolio .image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 8px;
}

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

.portfolio .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
    backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
    transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.portfolio .content {
    padding: 30px 0;
    text-align: center;
}

.portfolio .content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.portfolio .content p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (min-width: 992px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}

/* --------------------------------------------------------------
# Testimonials Section
-------------------------------------------------------------- */
.testimonials p {
    line-height: 1.7;
    color: var(--default-color);
}

.testimonials .testimonial {
    max-width: 500px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials .testimonial .name {
    font-size: 18px;
    color: var(--heading-color);
}

.testimonials .testimonial .img-wrap img {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonials .swiper-pagination {
    position: absolute;
    bottom: 0px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
    opacity: 0.3;
}

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

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

.services .service-grid {
    gap: 60px 0;
}

.services .service-item {
    padding: 0;
    text-align: left;
    transition: all 0.4s ease;
}

.services .service-item:hover {
    transform: translateY(-8px);
}

.services .service-item:hover .service-icon {
    transform: scale(1.05);
}

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

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

.services .service-item .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    transition: all 0.4s ease;
}

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

.services .service-item h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

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

.services .service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 32px;
    opacity: 0.85;
}

.services .service-item .service-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--default-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.services .service-item .service-link a span {
    position: relative;
}

.services .service-item .service-link a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

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

    .services .service-intro {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .services .service-grid {
        gap: 50px 0;
    }

    .services .service-item .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }

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

    .services .service-item h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .services .service-item p {
        margin-bottom: 28px;
    }
}

/* --------------------------------------------------------------
# Faq Section
-------------------------------------------------------------- */
.faq .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
    border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
    color: var(--accent-color);
    font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
    color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
    color: var(--accent-color);
    transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
    opacity: 1;
    transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    padding: 40px 0;
    cursor: pointer;
    gap: 0;
    transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
    transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
    transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
    flex: 1;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--heading-color);
    transition: all 0.3s ease;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
    padding: 0 80px 40px 80px;
    overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .faq .faq-item .faq-header {
        padding: 30px 0;
    }

    .faq .faq-item .faq-header .faq-number {
        width: 60px;
        font-size: 1rem;
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1.1rem;
        margin-right: 15px;
    }

    .faq .faq-item .faq-header .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq .faq-item .faq-header {
        padding: 25px 0;
    }

    .faq .faq-item .faq-header .faq-number {
        width: 50px;
        font-size: 0.9rem;
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1rem;
        margin-right: 10px;
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.9rem;
    }
}

/* --------------------------------------------------------------
# Contact Section
-------------------------------------------------------------- */
.contact .contact-form-container {
    padding: 60px 0;
}

.contact .contact-form-container .form-intro {
    margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .contact .contact-form-container .form-intro h2 {
        font-size: 28px;
    }
}

.contact .contact-form-container .form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 0;
    opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
    margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
    margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
    position: relative;
    margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
    margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background: transparent;
    padding: 20px 0 15px 0;
    font-size: 16px;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
    transform: translateX(5px);
}

.contact .contact-sidebar {
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    height: 100%;
    padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
    margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--heading-color);
    letter-spacing: -0.3px;
}

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

.contact .contact-sidebar .contact-methods {
    margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
    margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
    font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
    flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--default-color);
    margin-bottom: 0;
}

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

.contact .contact-sidebar .connect-section .connect-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
    display: flex;
    gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
    font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact .contact-form-container {
        padding: 40px 0;
    }

    .contact .contact-sidebar {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact .contact-form-container .form-intro {
        margin-bottom: 40px;
        text-align: center;
    }

    .contact .contact-form-container .contact-form .row {
        margin-bottom: 20px;
    }

    .contact .contact-form-container .contact-form .form-field {
        margin-bottom: 30px;
    }

    .contact .contact-sidebar {
        padding: 30px 25px;
    }

    .contact .contact-sidebar .contact-header,
    .contact .contact-sidebar .contact-methods {
        margin-bottom: 40px;
    }

    .contact .contact-sidebar .contact-method {
        margin-bottom: 30px;
    }
}

/* --------------------------------------------------------------
# Portfolio Details Section
-------------------------------------------------------------- */
.portfolio-details {
    --section-spacing: 5rem;
    --content-spacing: 4rem;
    --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.portfolio-details .project-hero .hero-content .project-category {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.portfolio-details .project-hero .hero-content .project-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.portfolio-details .project-hero .hero-content .project-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 400;
    margin-bottom: 0;
}

.portfolio-details .project-hero .project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
    text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
}

.portfolio-details .visual-showcase {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
    height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
    right: 30px;
}

.portfolio-details .content-section {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
    text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.portfolio-details .content-section .project-overview .overview-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details .metrics-showcase {
    padding: 4rem 0;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    margin: var(--section-spacing) -15px;
    border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
    text-align: center;
    padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 1.4;
}

.portfolio-details .technology-stack {
    margin-bottom: var(--section-spacing);
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .category-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    transform: translateY(-2px);
}

.portfolio-details .process-gallery {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
    font-size: 2.25rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
    grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
    transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
    transform: scale(1.05);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.portfolio-details .key-features-section {
    margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
    padding-right: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.portfolio-details .key-features-section .features-list .feature-row:last-child {
    margin-bottom: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 0;
}

.portfolio-details .project-footer {
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    color: var(--heading-color);
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.25rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 25px;
    color: var(--heading-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
    font-size: 1rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .portfolio-details .project-hero .hero-content .project-title {
        font-size: 3rem;
    }

    .portfolio-details .project-hero .project-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-details .content-section .project-overview .challenge-solution {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-details .content-section .project-overview h2 {
        font-size: 2.25rem;
    }

    .portfolio-details .metrics-showcase .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-details .key-features-section .features-intro {
        margin-bottom: 2rem;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .portfolio-details {
        --section-spacing: 3rem;
    }

    .portfolio-details .project-hero .hero-content .project-title {
        font-size: 2.5rem;
    }

    .portfolio-details .project-hero .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-details .visual-showcase .main-visual .swiper-slide img {
        height: 400px;
    }

    .portfolio-details .visual-showcase .main-visual .swiper-button-next,
    .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
    .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
        font-size: 0.9rem;
    }

    .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
        left: 15px;
    }

    .portfolio-details .visual-showcase .main-visual .swiper-button-next {
        right: 15px;
    }

    .portfolio-details .content-section .project-overview h2 {
        font-size: 2rem;
    }

    .portfolio-details .project-footer .footer-navigation {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
    .portfolio-details .project-footer .footer-navigation .nav-link.next-project {
        text-align: center;
    }

    .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
        order: -1;
    }

    .portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .portfolio-details .gallery-masonry {
        grid-template-columns: 1fr !important;
    }

    .portfolio-details .gallery-masonry .gallery-item.large {
        grid-row: span 1;
    }

    .portfolio-details .metrics-showcase {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

/* --------------------------------------------------------------
# Service Details Section
-------------------------------------------------------------- */
.service-details .service-hero {
    margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.9rem;
    font-weight: 300;
}

.service-details .service-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 300;
    margin: 0;
}

.service-details .service-visual {
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 4px;
}

.service-details .service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
    transform: scale(1.02);
}

.service-details .service-narrative {
    margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.service-details .service-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--default-color);
    font-weight: 300;
}

.service-details .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
    text-align: center;
    padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
    color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.service-details .timeline-section {
    margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
    position: relative;
}

.service-details .timeline-section .timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

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

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-details .service-sidebar {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .service-details .service-sidebar {
        padding-left: 0;
        margin-top: 4rem;
    }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
    background: var(--surface-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
    transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
    text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
    margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
    font-size: 0.95rem;
    color: var(--heading-color);
    font-weight: 500;
}

.service-details .success-story .story-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-style: italic;
    margin-bottom: 2rem;
}

.service-details .success-story .story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
    text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
    margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.service-details .consultation-form .form-group {
    margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: transparent;
}

.service-details .consultation-form .form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
    border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .consultation-form .btn-consultation {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-details .service-hero h1 {
        font-size: 2.5rem;
    }

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

    .service-details .service-visual img {
        height: 250px;
    }

    .service-details .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-details .timeline-section .timeline::before {
        left: 20px;
    }

    .service-details .timeline-section .timeline .timeline-item {
        padding-left: 60px;
    }

    .service-details .timeline-section .timeline .timeline-item .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
        font-size: 1rem;
    }

    .service-details .overview-card .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

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

/* --------------------------------------------------------------
# Hero 2 Section
-------------------------------------------------------------- */
.hero-2 {
    min-height: 100vh;
    display: grid;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;

    /* Decorative background */
    /* Swiper default fix if used somewhere inside */
}

.hero-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 70%), radial-gradient(900px 500px at 90% 80%, color-mix(in srgb, var(--heading-color), transparent 92%), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-2 .hero-card {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    background: var(--surface-color);
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    overflow: hidden;
}

.hero-2 .hero-card .eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero-2 .hero-card .eyebrow i {
    color: var(--accent-color);
}

.hero-2 .hero-card .content h2 {
    margin: 0;
    line-height: 1.15;
}

.hero-2 .hero-card .content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.hero-2 .hero-card .btn-primary-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    transition: 0.3s;
}

.hero-2 .hero-card .btn-primary-ghost:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 12%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.hero-2 .hero-card .btn-video {
    font-weight: 600;
    color: var(--heading-color);
    transition: 0.3s;
}

.hero-2 .hero-card .btn-video .play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: 0.3s;
}

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

.hero-2 .hero-card .btn-video:hover .play-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: scale(1.05);
}

.hero-2 .hero-card .mini-stats .stat {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-2 .hero-card .mini-stats .stat i {
    color: var(--accent-color);
}

.hero-2 .media-stack {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-inline: auto;
}

.hero-2 .media-stack .media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    background: var(--surface-color);
    transform-origin: center;
    transition: 0.3s;
}

.hero-2 .media-stack .media img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-2 .media-stack .media:hover {
    transform: translateY(-4px);
}

.hero-2 .media-stack .primary {
    transform: rotate(-2deg);
}

.hero-2 .media-stack .secondary {
    position: absolute;
    width: 70%;
    right: -8%;
    bottom: -10%;
    transform: rotate(6deg);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
    .hero-2 .media-stack .secondary {
        right: -2%;
        bottom: -6%;
        width: 68%;
    }
}

.hero-2 .media-stack .floating-badge {
    position: absolute;
    top: -14px;
    left: -14px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    animation: floatY 4s ease-in-out infinite;
}

.hero-2 .media-stack .floating-badge i {
    color: var(--accent-color);
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

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

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

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

@media (max-width: 1200px) {
    .hero-2 .hero-card {
        padding: 28px;
    }
}

@media (max-width: 992px) {
    .hero-2 {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-2 .hero-card .content h2 {
        font-size: clamp(28px, 4vw, 36px);
    }
}

@media (max-width: 576px) {
    .hero-2 .hero-card {
        padding: 22px;
    }

    .hero-2 .media-stack .floating-badge {
        transform: scale(0.95);
    }
}

/* --------------------------------------------------------------
# Hero 3 Section
-------------------------------------------------------------- */
.hero-3 {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-3 {
        padding: 100px 0 60px;
    }
}

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

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

.hero-3 .hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .hero-3 .hero-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-3 .hero-heading {
        font-size: 2.2rem;
    }
}

.hero-3 .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

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

.hero-3 .action-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-3 .action-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-3 .action-buttons {
        justify-content: center;
    }
}

@media (min-width: 993px) {
    .hero-3 .action-buttons {
        justify-content: flex-start;
    }
}

.hero-3 .primary-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.hero-3 .primary-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero-3 .primary-btn {
        width: 100%;
        text-align: center;
    }
}

.hero-3 .video-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.hero-3 .video-link:hover {
    color: var(--accent-color);
}

.hero-3 .video-link:hover .play-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.hero-3 .play-text {
    font-weight: 500;
}

.hero-3 .play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-3 .image-section {
    position: relative;
}

.hero-3 .hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-3 .pattern-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-3 .pattern-overlay {
        width: 150px;
        height: 150px;
        bottom: -20px;
        left: -20px;
    }
}

.hero-3 .main-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-3 .stats-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    max-width: 200px;
}

@media (max-width: 768px) {
    .hero-3 .stats-badge {
        position: relative;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: 0;
        width: fit-content;
    }
}

.hero-3 .stats-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-3 .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-3 .stats-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--default-color);
    font-weight: 500;
}

/* --------------------------------------------------------------
# Hero 4 Section
-------------------------------------------------------------- */
.hero-4 {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-4 .hero-text-container {
    padding-right: 3rem;
}

@media (max-width: 992px) {
    .hero-4 .hero-text-container {
        padding: 2rem 1rem;
        text-align: center;
    }
}

.hero-4 .hero-text-container h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-4 .hero-text-container h1 {
        font-size: 2.5rem;
    }
}

.hero-4 .hero-text-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-4 .hero-text-container .hero-cta {
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .hero-4 .hero-text-container .hero-cta {
        display: flex;
        justify-content: center;
    }
}

.hero-4 .hero-text-container .hero-cta .primary-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

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

.hero-4 .hero-text-container .hero-cta .secondary-btn {
    background-color: transparent;
    color: var(--heading-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--heading-color);
    transition: all 0.3s ease;
}

.hero-4 .hero-text-container .hero-cta .secondary-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-4 .hero-text-container .hero-stats {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .hero-4 .hero-text-container .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-4 .hero-text-container .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-4 .hero-text-container .hero-stats .stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.hero-4 .hero-text-container .hero-stats .stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.hero-4 .hero-image-container {
    position: relative;
}

.hero-4 .hero-image-container .hero-image {
    position: relative;
    height: 100%;
}

.hero-4 .hero-image-container .hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .hero-4 .hero-image-container .hero-image {
        margin-top: 2rem;
    }

    .hero-4 .hero-image-container .hero-image img {
        height: auto;
    }
}

.hero-4 .hero-image-container .upcoming-event {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: color-mix(in srgb, var(--background-color), transparent 7%);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    max-width: 350px;
}

@media (max-width: 768px) {
    .hero-4 .hero-image-container .upcoming-event {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -70px;
        margin-right: 20px;
        z-index: 1;
    }
}

.hero-4 .hero-image-container .upcoming-event .event-date {
    background-color: var(--accent-color);
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.hero-4 .hero-image-container .upcoming-event .event-date .date {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.hero-4 .hero-image-container .upcoming-event .event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero-4 .hero-image-container .upcoming-event .event-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.hero-4 .hero-image-container .upcoming-event .event-info p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.hero-4 .hero-image-container .upcoming-event .event-info .event-link {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.hero-4 .hero-image-container .upcoming-event .event-info .event-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hero-4 .hero-image-container .upcoming-event .event-info .event-link:hover i {
    transform: translateX(3px);
}

/* --------------------------------------------------------------
# About 2 Section
-------------------------------------------------------------- */
.about-2 .content-wrapper {
    padding-right: 2rem;
}

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

.about-2 .tag-label {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

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

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

.about-2 .lead-paragraph {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2.5rem;
}

.about-2 .value-points {
    margin-bottom: 2.5rem;
}

.about-2 .value-points .value-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.about-2 .value-points .value-point:last-child {
    margin-bottom: 0;
}

.about-2 .value-points .value-point .point-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-2 .value-points .value-point .point-text h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.about-2 .value-points .value-point .point-text p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
}

.about-2 .cta-wrapper .primary-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.875rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.about-2 .cta-wrapper .primary-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.about-2 .visual-block {
    position: relative;
}

.about-2 .visual-block .main-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.about-2 .visual-block .main-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-2 .visual-block .main-visual .stat-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--surface-color);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 576px) {
    .about-2 .visual-block .main-visual .stat-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1.25rem 1.5rem;
    }
}

.about-2 .visual-block .main-visual .stat-badge .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.375rem;
}

@media (max-width: 576px) {
    .about-2 .visual-block .main-visual .stat-badge .stat-number {
        font-size: 1.625rem;
    }
}

.about-2 .visual-block .main-visual .stat-badge .stat-text {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 600;
}

.about-2 .visual-block .secondary-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-2 .visual-block .secondary-visuals .visual-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-2 .visual-block .secondary-visuals .visual-card:hover {
    transform: translateY(-5px);
}

.about-2 .visual-block .secondary-visuals .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.about-2 .stats-row {
    margin-top: 5rem;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), color-mix(in srgb, var(--surface-color), transparent 50%));
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
}

.about-2 .stats-row .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.about-2 .stats-row .stat-item:hover {
    transform: translateY(-5px);
}

.about-2 .stats-row .stat-item .stat-icon {
    font-size: 2.25rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-2 .stats-row .stat-item .stat-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .about-2 .stats-row .stat-item .stat-value {
        font-size: 2.25rem;
    }
}

.about-2 .stats-row .stat-item .stat-desc {
    font-size: 0.9375rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 500;
    margin: 0;
}

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

.about-3 .image-section .primary-image {
    position: relative;
    margin-bottom: 2rem;
}

.about-3 .image-section .primary-image img {
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-3 .image-section .primary-image .experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
    .about-3 .image-section .primary-image .experience-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

.about-3 .image-section .primary-image .experience-badge .years {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-3 .image-section .primary-image .experience-badge .text {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-3 .image-section .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-3 .image-section .image-grid .grid-img {
    border-radius: 6px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-3 .image-section .image-grid .grid-img:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about-3 .image-section {
        margin-bottom: 3rem;
    }
}

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

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

.about-3 .section-intro {
    margin-bottom: 3rem;
}

.about-3 .section-intro .company-badge {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-3 .section-intro h2 {
    font-size: 2.125rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .about-3 .section-intro h2 {
        font-size: 1.75rem;
    }
}

.about-3 .section-intro .intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.about-3 .achievement-list {
    margin-bottom: 3rem;
}

.about-3 .achievement-list .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-3 .achievement-list .achievement-item:last-child {
    margin-bottom: 0;
}

.about-3 .achievement-list .achievement-item .achievement-icon {
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-3 .achievement-list .achievement-item .achievement-content h4 {
    font-size: 22px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.about-3 .achievement-list .achievement-item .achievement-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.about-3 .action-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 576px) {
    .about-3 .action-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.about-3 .action-section .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-3 .action-section .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-1px);
}

.about-3 .action-section .contact-info .contact-label {
    display: block;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.25rem;
}

.about-3 .action-section .contact-info .phone-number {
    font-size: 1.125rem;
    color: var(--heading-color);
    font-weight: 600;
}

.about-3 .metrics-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 70%);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about-3 .metrics-section .metric-card {
    padding: 1.5rem 1rem;
}

.about-3 .metrics-section .metric-card .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .about-3 .metrics-section .metric-card .metric-value {
        font-size: 2rem;
    }
}

.about-3 .metrics-section .metric-card .metric-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
    margin: 0;
}

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

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

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

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

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

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

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

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

.services-3 .featured-service-main {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-3 .service-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-3 .service-image-wrapper:hover img {
    transform: scale(1.02);
}

.services-3 .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, transparent 70%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
}

.services-3 .service-badge {
    background: var(--surface-color);
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-3 .service-badge i {
    font-size: 20px;
    color: var(--accent-color);
}

.services-3 .service-badge span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 14px;
}

.services-3 .service-details {
    padding: 40px 0 0 0;
}

.services-3 .service-details h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.services-3 .service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 32px;
}

.services-3 .main-cta {
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.services-3 .main-cta::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
}

.services-3 .main-cta:hover {
    color: var(--heading-color);
}

.services-3 .main-cta:hover::after {
    transform: scaleX(1.1);
}

.services-3 .services-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 60px;
}

.services-3 .service-item {
    padding: 32px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.services-3 .service-item:last-child {
    border-bottom: none;
}

.services-3 .service-item:hover {
    transform: translateX(8px);
}

.services-3 .service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.service-item:hover .services-3 .service-icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1);
}

.service-item:hover .services-3 .service-icon-wrapper i {
    color: var(--contrast-color);
}

.services-3 .service-info {
    flex: 1;
}

.services-3 .service-info h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--heading-color);
    line-height: 1.4;
}

.services-3 .service-info p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 12px;
}

.services-3 .service-link {
    font-size: 13px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-3 .service-link:hover {
    color: var(--heading-color);
}

.services-3 .specialties-grid {
    margin-top: 80px;
}

.services-3 .specialty-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.services-3 .specialty-card:hover {
    transform: translateY(-5px);
}

.services-3 .specialty-card:hover .specialty-image img {
    transform: scale(1.05);
}

.services-3 .specialty-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.services-3 .specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    outline: 1px solid #cccccc;
}

.services-3 .specialty-content h5 {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.services-3 .specialty-content span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services-3 .services-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .services-3 .service-details h2 {
        font-size: 28px;
    }
}

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

    .services-3 .service-image-wrapper {
        height: 280px;
    }

    .services-3 .service-overlay {
        padding: 24px;
    }

    .services-3 .service-details {
        padding-top: 24px;
    }

    .services-3 .service-details h2 {
        font-size: 24px;
    }

    .services-3 .service-details p {
        font-size: 15px;
    }

    .services-3 .service-item {
        padding: 24px 0;
    }

    .services-3 .specialties-grid {
        margin-top: 50px;
    }

    .services-3 .specialty-image {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .services-3 .specialty-content h5 {
        font-size: 14px;
    }

    .services-3 .specialty-content span {
        font-size: 12px;
    }
}

/* --------------------------------------------------------------
# Features Section
-------------------------------------------------------------- */
.features {
    padding: 0;
}

.features .video-play {
    min-height: 400px;
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/bg-4.webp") center center;
    background-size: cover;
}

.features .content {
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 768px) {
    .features .content {
        padding: 80px;
    }
}

.features .content h3 {
    font-weight: 600;
    font-size: 32px;
}

.features .content ul {
    list-style: none;
    padding: 0;
}

.features .content ul li {
    padding-bottom: 10px;
}

.features .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

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

.features .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.features .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.features .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    padding-right: 19px;
}

.features .content .read-more:hover i {
    margin-left: 10px;
}

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

/* --------------------------------------------------------------
# Features 2 Section
-------------------------------------------------------------- */
.features-2 .features-image {
    position: relative;
    min-height: 400px;
}

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

.features-2 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-2 .icon-box {
    margin-top: 30px;
}

.features-2 .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.features-2 .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.features-2 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Product Details Section
-------------------------------------------------------------- */
.product-details .product-images .image-zoom-container {
    position: relative;
    margin-bottom: 20px;
}

.product-details .product-images .main-image-wrapper {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-images .main-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    cursor: zoom-in;
}

.product-details .product-images .image-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.product-details .product-images .image-nav-btn {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--default-color);
}

.product-details .product-images .image-nav-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.product-details .product-images .thumbnail-list {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.product-details .product-images .thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--surface-color);
}

.product-details .product-images .thumbnail-item.active,
.product-details .product-images .thumbnail-item:hover {
    border-color: var(--accent-color);
}

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

.product-details .product-details .product-badge {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.product-details .product-details .product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.product-details .product-details .rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-details .product-details .rating-section .stars {
    display: flex;
    color: #ffc107;
    font-size: 16px;
}

.product-details .product-details .rating-section .stars i {
    margin-right: 2px;
}

.product-details .product-details .rating-section .rating-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
}

.product-details .product-details .price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-details .product-details .price-section .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-details .product-details .price-section .original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-details .price-section .discount {
    background: color-mix(in srgb, #dc3545, transparent 10%);
    color: #dc3545;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-details .product-details .product-description {
    margin-bottom: 30px;
}

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

.product-details .product-details .product-options {
    margin-bottom: 30px;
}

.product-details .product-details .product-options .option-group {
    margin-bottom: 20px;
}

.product-details .product-details .product-options .option-group:last-child {
    margin-bottom: 0;
}

.product-details .product-details .product-options .option-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--heading-color);
}

.product-details .product-details .product-options .color-options {
    display: flex;
    gap: 10px;
}

.product-details .product-details .product-options .color-options input[type=radio] {
    display: none;
}

.product-details .product-details .product-options .color-options .color-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.product-details .product-details .product-options .color-options .color-option.black {
    background-color: #000000;
}

.product-details .product-details .product-options .color-options .color-option.white {
    background-color: #ffffff;
}

.product-details .product-details .product-options .color-options .color-option.blue {
    background-color: #007bff;
}

.product-details .product-details .product-options .color-options .color-option::after {
    content: "\f26e";
    font-family: bootstrap-icons;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--contrast-color);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-details .product-details .product-options .color-options input[type=radio]:checked+.color-option {
    border-color: var(--accent-color);
}

.product-details .product-details .product-options .color-options input[type=radio]:checked+.color-option::after {
    opacity: 1;
}

.product-details .product-details .product-options .size-options {
    display: flex;
    gap: 10px;
}

.product-details .product-details .product-options .size-options input[type=radio] {
    display: none;
}

.product-details .product-details .product-options .size-options .size-option {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--default-color);
    background-color: var(--surface-color);
}

.product-details .product-details .product-options .size-options input[type=radio]:checked+.size-option {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.product-details .product-details .quantity-cart-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .product-details .product-details .quantity-cart-section {
        flex-direction: column;
    }
}

.product-details .product-details .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--surface-color);
}

.product-details .product-details .quantity-selector .quantity-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-details .product-details .quantity-selector .quantity-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.product-details .product-details .quantity-selector .quantity-input {
    border: none;
    background: none;
    text-align: center;
    width: 60px;
    padding: 12px 5px;
    color: var(--default-color);
    font-weight: 600;
}

.product-details .product-details .quantity-selector .quantity-input:focus {
    outline: none;
}

.product-details .product-details .cart-buttons {
    display: flex;
    gap: 12px;
    flex: 1;
}

@media (max-width: 576px) {
    .product-details .product-details .cart-buttons {
        flex-direction: column;
    }
}

.product-details .product-details .cart-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.product-details .product-details .cart-buttons .btn.add-to-cart {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.product-details .product-details .cart-buttons .btn.add-to-cart:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.product-details .product-details .cart-buttons .btn.buy-now {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

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

.product-details .product-details .product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .product-actions .action-btn {
    background: none;
    border: none;
    color: var(--default-color);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-details .product-details .product-actions .action-btn:hover {
    color: var(--accent-color);
}

.product-details .product-details .product-actions .action-btn i {
    font-size: 16px;
}

.product-details .product-details .product-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .product-meta .meta-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

.product-details .product-details .product-meta .meta-item:last-child {
    margin-bottom: 0;
}

.product-details .product-details .product-meta .meta-item .meta-label {
    min-width: 80px;
    font-weight: 600;
    color: var(--heading-color);
}

.product-details .product-details .product-meta .meta-item .meta-value {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details .shipping-info .shipping-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

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

.product-details .product-details .shipping-info .shipping-item i {
    font-size: 20px;
    color: var(--accent-color);
}

.product-details .product-details .shipping-info .shipping-item .shipping-text strong {
    display: block;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 2px;
}

.product-details .product-details .shipping-info .shipping-item .shipping-text span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
}

@media (max-width: 992px) {
    .product-details .product-images {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .product-details .product-details .product-title {
        font-size: 24px;
    }

    .product-details .product-details .price-section .current-price {
        font-size: 24px;
    }

    .product-details .product-details .product-actions {
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------------------
# Category Header Section
-------------------------------------------------------------- */
.category-header {
    padding-bottom: 0;
}

.category-header .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.category-header .active-filters .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-header .active-filters .filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-header .active-filters .filter-tag:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
}

.category-header .active-filters .filter-tag i {
    margin-right: 0.35rem;
    font-size: 0.9rem;
}

.category-header .results-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .results-controls .results-count p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.category-header .results-controls .controls-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-header .results-controls .control-label {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 0.5rem;
}

.category-header .results-controls .sort-options,
.category-header .results-controls .items-per-page {
    display: flex;
    align-items: center;
}

.category-header .results-controls .sort-options .select-wrapper,
.category-header .results-controls .items-per-page .select-wrapper {
    position: relative;
}

.category-header .results-controls .sort-options .select-wrapper::after,
.category-header .results-controls .items-per-page .select-wrapper::after {
    content: "\f282";

    /* Bootstrap Icons chevron-down */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: var(--heading-color);
}

.category-header .results-controls .sort-options .select-wrapper .custom-select,
.category-header .results-controls .items-per-page .select-wrapper .custom-select {
    appearance: none;

    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.25rem 1.5rem 0.25rem 0;
    cursor: pointer;
    min-width: 150px;
}

.category-header .results-controls .sort-options .select-wrapper .custom-select:focus,
.category-header .results-controls .items-per-page .select-wrapper .custom-select:focus {
    outline: none;
    box-shadow: none;
}

.category-header .results-controls .sort-options .select-wrapper .custom-select option,
.category-header .results-controls .items-per-page .select-wrapper .custom-select option {
    background-color: var(--surface-color);
    color: var(--default-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.category-header .results-controls .view-options {
    display: flex;
    gap: 0.5rem;
}

.category-header .results-controls .view-options .view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.category-header .results-controls .view-options .view-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.category-header .results-controls .view-options .view-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.category-header .results-controls .view-options .view-btn i {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .category-header .results-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-header .results-controls .controls-wrapper {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .category-header .results-controls .controls-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .category-header .results-controls .sort-options,
    .category-header .results-controls .items-per-page {
        flex: 1;
        min-width: 45%;
    }

    .category-header .results-controls .view-options {
        margin-left: auto;
    }
}

@media (max-width: 575.98px) {
    .category-header .results-controls .controls-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-header .results-controls .sort-options,
    .category-header .results-controls .items-per-page,
    .category-header .results-controls .view-options {
        width: 100%;
        margin-left: 0;
    }
}

/* --------------------------------------------------------------
# Events Section
-------------------------------------------------------------- */
.events .event-item {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    height: 100%;
}

.events .event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.events .event-item .event-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.events .event-item .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.events .event-item .event-image:hover img {
    transform: scale(1.05);
}

.events .event-item .event-image .event-date-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
    color: var(--contrast-color);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events .event-item .event-image .event-date-overlay .date {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.events .event-item .event-details {
    padding: 1.5rem;
}

.events .event-item .event-details .event-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.events .event-item .event-details .event-category .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events .event-item .event-details .event-category .badge.academic {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    color: #0d47a1;
}

.events .event-item .event-details .event-category .badge.sports {
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    color: #2e7d32;
}

.events .event-item .event-details .event-category .badge.arts {
    background: linear-gradient(45deg, #ffebee, #ffcdd2);
    color: #c62828;
}

.events .event-item .event-details .event-category .badge.community {
    background: linear-gradient(45deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.events .event-item .event-details .event-category .event-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
}

.events .event-item .event-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--heading-color);
}

.events .event-item .event-details p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.events .event-item .event-details .event-info {
    margin-bottom: 1.5rem;
}

.events .event-item .event-details .event-info .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.events .event-item .event-details .event-info .info-row i {
    font-size: 1rem;
    color: var(--accent-color);
    margin-right: 0.6rem;
    width: 16px;
}

.events .event-item .event-details .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events .event-item .event-details .event-footer .register-btn {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
    color: var(--contrast-color);
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.events .event-item .event-details .event-footer .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events .event-item .event-details .event-footer .event-share {
    display: flex;
    gap: 0.5rem;
}

.events .event-item .event-details .event-footer .event-share i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--default-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.events .event-item .event-details .event-footer .event-share i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.events .events-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .events-navigation .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.events .events-navigation .filter-tabs .filter-tab {
    padding: 0.6rem 1.2rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    background-color: transparent;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.events .events-navigation .filter-tabs .filter-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.events .events-navigation .filter-tabs .filter-tab.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.events .events-navigation .view-calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--surface-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.events .events-navigation .view-calendar-btn i {
    font-size: 1.1rem;
}

.events .events-navigation .view-calendar-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .events .event-item .event-image {
        height: 180px;
    }

    .events .event-item .event-details {
        padding: 1.25rem;
    }

    .events .event-item .event-details .event-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .events .events-navigation .filter-tabs {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .events .events-navigation .view-calendar-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------
# Post List Section
-------------------------------------------------------------- */
.post-list .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.post-list .post-box .post-img {
    overflow: hidden;
    position: relative;
}

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

.post-list .post-box .meta {
    margin-top: 15px;
}

.post-list .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: var(--accent-color);
}

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

.post-list .post-box .post-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 0 0;
    position: relative;
    transition: 0.3s;
}

.post-list .post-box p {
    margin: 15px 0 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-list .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    margin-top: 15px;
}

.post-list .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}

.post-list .post-box:hover .post-title {
    color: var(--accent-color);
}

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

/* --------------------------------------------------------------
# Post List 2 Section
-------------------------------------------------------------- */
.post-list-2 .card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    height: 100%;
    background-color: var(--surface-color);
}

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

.post-list-2 .card .card-top {
    padding: 1rem;
}

.post-list-2 .card .card-top img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.post-list-2 .card .card-top .author-name {
    font-size: 0.9rem;
    color: var(--heading-color);
}

.post-list-2 .card .card-top .likes {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.post-list-2 .card .card-top .likes i {
    margin-right: 0.25rem;
}

.post-list-2 .card .card-img-wrapper {
    overflow: hidden;
    max-height: 250px;
}

.post-list-2 .card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.post-list-2 .card .card-body {
    padding: 1.5rem;
}

.post-list-2 .card .card-body .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
    font-weight: 600;
}

.post-list-2 .card .card-body .card-title a {
    color: inherit;
}

.post-list-2 .card .card-body .card-title:hover {
    color: var(--accent-color);
}

.post-list-2 .card .card-body .card-text {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

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

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

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

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

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

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

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

.post-list-3 .post-item hr {
    color: color-mix(in srgb, var(--default-color), transparent 80%);
    margin: 20px 0;
}

.post-list-3 .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.post-list-3 .post-item:hover .post-img img {
    transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Blog Author Section
-------------------------------------------------------------- */
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.blog-author .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Author 2 Section
-------------------------------------------------------------- */
.author-2 .author-box {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.author-2 .author-box:hover {
    transform: translateY(-5px);
}

.author-2 .author-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-2 .author-img:hover {
    transform: scale(1.05);
}

.author-2 .author-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    margin: 0 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.author-2 .author-social-links a.linkedin:hover {
    background-color: #0077b5;
}

.author-2 .author-social-links a.twitter:hover {
    background-color: #000000;
}

.author-2 .author-social-links a.github:hover {
    background-color: #333333;
}

.author-2 .author-social-links a.facebook:hover {
    background-color: #1877f2;
}

.author-2 .author-social-links a.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.author-2 .author-content {
    padding-left: 1rem;
}

@media (max-width: 767.98px) {
    .author-2 .author-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
}

.author-2 .author-content .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.author-2 .author-content .author-title {
    display: inline-block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 0.5rem;
    font-family: var(--heading-font);
}

.author-2 .author-content .author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
    margin: 1rem 0;
}

.author-2 .author-content .author-website {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author-2 .author-content .author-website {
        justify-content: center;
    }
}

.author-2 .author-content .author-website a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.author-2 .author-content .author-website a i {
    font-size: 1.1rem;
}

.author-2 .author-content .author-website a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    transform: translateX(3px);
}

.author-2 .author-content .author-website .more-posts {
    font-weight: 500;
}

/* --------------------------------------------------------------
# Features 3 Section
-------------------------------------------------------------- */
.features-3 .features-image {
    position: relative;
    min-height: 400px;
}

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

.features-3 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-3 .icon-box {
    margin-top: 30px;
}

.features-3 .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.features-3 .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.features-3 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Hero 5 Section
-------------------------------------------------------------- */
.hero-5 {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-5 .hero-wrapper {
    position: relative;
}

.hero-5 .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-5 .shape.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 40%));
    top: -200px;
    right: -100px;
}

.hero-5 .shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
    bottom: -150px;
    left: -100px;
}

.hero-5 .shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 20%;
}

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

.hero-5 .hero-text-content .hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-5 .hero-text-content .display-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .hero-5 .hero-text-content .display-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-5 .hero-text-content .display-title {
        font-size: 2.5rem;
    }
}

.hero-5 .hero-text-content .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 40px;
    max-width: 540px;
}

@media (max-width: 768px) {
    .hero-5 .hero-text-content .lead-text {
        font-size: 1.05rem;
    }
}

.hero-5 .hero-text-content .cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-5 .hero-text-content .cta-buttons .btn-explore,
.hero-5 .hero-text-content .cta-buttons .btn-deals {
    padding: 18px 38px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-5 .hero-text-content .cta-buttons .btn-explore {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero-5 .hero-text-content .cta-buttons .btn-explore:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.hero-5 .hero-text-content .cta-buttons .btn-deals {
    background: var(--surface-color);
    color: var(--heading-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-5 .hero-text-content .cta-buttons .btn-deals i {
    color: #ffc107;
}

.hero-5 .hero-text-content .cta-buttons .btn-deals:hover {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateY(-4px);
}

.hero-5 .hero-text-content .trust-indicators {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-5 .hero-text-content .trust-indicators .indicator-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-5 .hero-text-content .trust-indicators .indicator-item .indicator-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-5 .hero-text-content .trust-indicators .indicator-item .indicator-icon i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.hero-5 .hero-text-content .trust-indicators .indicator-item .indicator-text {
    display: flex;
    flex-direction: column;
}

.hero-5 .hero-text-content .trust-indicators .indicator-item .indicator-text strong {
    font-size: 0.95rem;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.hero-5 .hero-text-content .trust-indicators .indicator-item .indicator-text span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero-5 .hero-image-section {
    position: relative;
    padding: 20px;
}

.hero-5 .hero-image-section .main-product-display {
    position: relative;
    background: var(--surface-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 70px color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero-5 .hero-image-section .main-product-display .product-frame {
    position: relative;
    margin-bottom: 30px;
}

.hero-5 .hero-image-section .main-product-display .product-frame img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.hero-5 .hero-image-section .main-product-display .product-frame .sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.hero-5 .hero-image-section .main-product-display .product-details-card .rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.hero-5 .hero-image-section .main-product-display .product-details-card .rating-stars i {
    color: #ffc107;
    font-size: 0.95rem;
}

.hero-5 .hero-image-section .main-product-display .product-details-card .rating-stars .rating-count {
    margin-left: 8px;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero-5 .hero-image-section .main-product-display .product-details-card .product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.hero-5 .hero-image-section .main-product-display .product-details-card .pricing-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-5 .hero-image-section .main-product-display .product-details-card .pricing-info .current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.hero-5 .hero-image-section .main-product-display .product-details-card .pricing-info .old-price {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    text-decoration: line-through;
}

.hero-5 .hero-image-section .secondary-products {
    position: absolute;
    bottom: 40px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero-5 .hero-image-section .secondary-products {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
}

.hero-5 .hero-image-section .secondary-products .mini-card {
    width: 130px;
    height: 130px;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 93%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-5 .hero-image-section .secondary-products .mini-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero-5 .hero-image-section .secondary-products .mini-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.hero-5 .hero-image-section .secondary-products .mini-card .quick-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.hero-5 .hero-image-section .action-icons {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-5 .hero-image-section .action-icons .icon-bubble {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 91%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-5 .hero-image-section .action-icons .icon-bubble i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-5 .hero-image-section .action-icons .icon-bubble:hover {
    transform: translateY(-6px);
    background: var(--accent-color);
}

.hero-5 .hero-image-section .action-icons .icon-bubble:hover i {
    color: var(--contrast-color);
}

.hero-5 .hero-image-section .action-icons .icon-bubble.favorite {
    top: 40px;
    left: -35px;
}

.hero-5 .hero-image-section .action-icons .icon-bubble.compare {
    top: 150px;
    left: -20px;
}

@media (max-width: 992px) {
    .hero-5 .hero-image-section .action-icons .icon-bubble {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-5 {
        padding: 100px 0;
    }
}

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

    .hero-5 .hero-text-content .cta-buttons .btn-explore,
    .hero-5 .hero-text-content .cta-buttons .btn-deals {
        padding: 15px 28px;
        font-size: 1rem;
    }

    .hero-5 .hero-image-section .main-product-display {
        padding: 30px;
    }

    .hero-5 .hero-image-section .main-product-display .product-frame img {
        height: 280px;
    }
}

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

.hero-6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 50%), radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-6 .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-color);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
}

.hero-6 .hero-content .hero-badge i {
    color: var(--accent-color);
    font-size: 14px;
}

.hero-6 .hero-content .hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
}

.hero-6 .hero-content .hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--heading-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .hero-6 .hero-content .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-6 .hero-content .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-6 .hero-content .hero-title {
        font-size: 32px;
    }
}

.hero-6 .hero-content .hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero-6 .hero-content .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.hero-6 .hero-content .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 576px) {
    .hero-6 .hero-content .hero-features {
        gap: 16px;
    }
}

.hero-6 .hero-content .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-6 .hero-content .hero-features .feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-6 .hero-content .hero-features .feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color);
}

.hero-6 .hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 576px) {
    .hero-6 .hero-content .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.hero-6 .hero-content .hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-6 .hero-content .hero-actions .btn-primary i {
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-6 .hero-content .hero-actions .btn-primary:hover i {
    transform: translateX(4px);
}

.hero-6 .hero-content .hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--heading-color);
    padding: 16px 32px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-6 .hero-content .hero-actions .btn-secondary i {
    font-size: 20px;
}

.hero-6 .hero-content .hero-actions .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.hero-6 .hero-content .hero-social-proof .rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 576px) {
    .hero-6 .hero-content .hero-social-proof .rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.hero-6 .hero-content .hero-social-proof .rating .stars {
    display: flex;
    gap: 4px;
}

.hero-6 .hero-content .hero-social-proof .rating .stars i {
    color: #FFB800;
    font-size: 16px;
}

.hero-6 .hero-content .hero-social-proof .rating .rating-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.hero-6 .hero-visual {
    position: relative;
}

.hero-6 .hero-visual .visual-container {
    position: relative;
    padding: 20px;
}

.hero-6 .hero-visual .visual-container .main-screen {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-6 .hero-visual .visual-container .floating-card {
    position: absolute;
    background: var(--surface-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

@media (max-width: 992px) {
    .hero-6 .hero-visual .visual-container .floating-card {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .hero-6 .hero-visual .visual-container .floating-card {
        display: none;
    }
}

.hero-6 .hero-visual .visual-container .floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-6 .hero-visual .visual-container .floating-card .card-icon {
        width: 36px;
        height: 36px;
    }
}

.hero-6 .hero-visual .visual-container .floating-card .card-icon i {
    color: var(--accent-color);
    font-size: 20px;
}

@media (max-width: 992px) {
    .hero-6 .hero-visual .visual-container .floating-card .card-icon i {
        font-size: 18px;
    }
}

.hero-6 .hero-visual .visual-container .floating-card .card-icon.success {
    background: color-mix(in srgb, #10b981, transparent 90%);
}

.hero-6 .hero-visual .visual-container .floating-card .card-icon.success i {
    color: #10b981;
}

.hero-6 .hero-visual .visual-container .floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.hero-6 .hero-visual .visual-container .floating-card .card-content .card-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 4px;
}

@media (max-width: 992px) {
    .hero-6 .hero-visual .visual-container .floating-card .card-content .card-value {
        font-size: 18px;
    }
}

.hero-6 .hero-visual .visual-container .floating-card .card-content .card-label {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-6 .hero-visual .visual-container .floating-card .card-content .card-label {
        font-size: 12px;
    }
}

.hero-6 .hero-visual .visual-container .floating-card.card-1 {
    top: 15%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.hero-6 .hero-visual .visual-container .floating-card.card-2 {
    bottom: 25%;
    right: -5%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-6 .hero-visual .visual-container .floating-card.card-3 {
    top: 50%;
    left: -8%;
    animation: float 6s ease-in-out infinite 4s;
}

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

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

@media (max-width: 992px) {
    .hero-6 {
        padding: 80px 0 60px 0;
    }

    .hero-6 .row {
        flex-direction: column-reverse;
    }

    .hero-6 .hero-visual {
        margin-bottom: 48px;
    }
}

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

/* --------------------------------------------------------------
# Hero 7 Section
-------------------------------------------------------------- */
.hero-7 {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    position: relative;
    overflow: hidden;
}

.hero-7 .container {
    position: relative;
    z-index: 2;
    padding: 80px 15px;
}

.hero-7 .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.hero-7 .hero-content h1 .accent-text {
    color: var(--accent-color);
    font-weight: 400;
    position: relative;
}

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

@media (max-width: 992px) {
    .hero-7 .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-7 .hero-content h1 {
        font-size: 2.2rem;
    }
}

.hero-7 .hero-content .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 3rem;
    max-width: 90%;
}

@media (max-width: 768px) {
    .hero-7 .hero-content .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

.hero-7 .hero-content .hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .hero-7 .hero-content .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-7 .hero-content .hero-actions .btn-primary {
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.hero-7 .hero-content .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.hero-7 .hero-content .hero-actions .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--heading-color);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero-7 .hero-content .hero-actions .btn-secondary:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-7 .hero-content .hero-stats {
    display: flex;
    gap: 3rem;
}

@media (max-width: 768px) {
    .hero-7 .hero-content .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-7 .hero-content .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.hero-7 .hero-content .hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1;
}

.hero-7 .hero-content .hero-stats .stat-item .stat-label {
    display: block;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero-7 .hero-image {
    position: relative;
}

.hero-7 .hero-image .image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-7 .hero-image .image-wrapper .main-image {
    border-radius: 12px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--heading-color), transparent 85%);
    transition: transform 0.3s ease;
}

.hero-7 .hero-image .image-wrapper .main-image:hover {
    transform: scale(1.02);
}

.hero-7 .hero-image .image-wrapper .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--heading-color), transparent 90%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.hero-7 .hero-image .image-wrapper .floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--heading-color), transparent 85%);
}

.hero-7 .hero-image .image-wrapper .floating-card i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.hero-7 .hero-image .image-wrapper .floating-card.card-1 {
    top: 20%;
    left: -15%;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-1 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-1 {
        left: 0;
        top: 10%;
    }
}

.hero-7 .hero-image .image-wrapper .floating-card.card-2 {
    top: 60%;
    right: -15%;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-2 {
        right: -10%;
    }
}

@media (max-width: 768px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-2 {
        right: 0;
        top: 50%;
    }
}

.hero-7 .hero-image .image-wrapper .floating-card.card-3 {
    bottom: 15%;
    left: -10%;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-3 {
        left: -5%;
    }
}

@media (max-width: 768px) {
    .hero-7 .hero-image .image-wrapper .floating-card.card-3 {
        left: 0;
        bottom: 5%;
    }
}

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

/* --------------------------------------------------------------
# Hero 8 Section
-------------------------------------------------------------- */
.hero-8 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

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

@media (max-width: 768px) {
    .hero-8 .hero-content h1 {
        font-size: 2.5rem;
    }
}

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

.hero-8 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-8 .hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-8 .hero-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero-8 .hero-buttons .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.hero-8 .hero-buttons .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.hero-8 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-8 .hero-stats .stat-item {
    text-align: center;
}

.hero-8 .hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-8 .hero-stats .stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-8 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-8 .hero-visual {
    position: relative;
}

.hero-8 .hero-visual .hero-image {
    position: relative;
    z-index: 2;
}

.hero-8 .hero-visual .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-8 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero-8 .floating-elements .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-8 .floating-elements .floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-8 .floating-elements .floating-card span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.hero-8 .floating-elements .floating-card.card-1 {
    top: 20%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.hero-8 .floating-elements .floating-card.card-2 {
    top: 60%;
    left: -15%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-8 .floating-elements .floating-card.card-3 {
    bottom: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite 4s;
}

@media (max-width: 992px) {
    .hero-8 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-8 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-8 .floating-elements .floating-card {
        display: none;
    }
}

.hero-8 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-8 .hero-bg-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.hero-8 .hero-bg-elements .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.hero-8 .hero-bg-elements .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.hero-8 .hero-bg-elements .bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveParticles 30s linear infinite;
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

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

@media (max-width: 768px) {
    .hero-8 .hero-buttons {
        justify-content: center;
    }

    .hero-8 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------
# Hero 9 Section
-------------------------------------------------------------- */
.hero-9 {
    min-height: 100vh;
    display: grid;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;

    /* Decorative background */
    /* Swiper default fix if used somewhere inside */
}

.hero-9::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 70%), radial-gradient(900px 500px at 90% 80%, color-mix(in srgb, var(--heading-color), transparent 92%), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-9 .hero-card {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    background: var(--surface-color);
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    overflow: hidden;
}

.hero-9 .hero-card .eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero-9 .hero-card .eyebrow i {
    color: var(--accent-color);
}

.hero-9 .hero-card .content h2 {
    margin: 0;
    line-height: 1.15;
}

.hero-9 .hero-card .content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.hero-9 .hero-card .btn-primary-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    transition: 0.3s;
}

.hero-9 .hero-card .btn-primary-ghost:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 12%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.hero-9 .hero-card .btn-video {
    font-weight: 600;
    color: var(--heading-color);
    transition: 0.3s;
}

.hero-9 .hero-card .btn-video .play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: 0.3s;
}

.hero-9 .hero-card .btn-video:hover {
    color: var(--accent-color);
}

.hero-9 .hero-card .btn-video:hover .play-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: scale(1.05);
}

.hero-9 .hero-card .mini-stats .stat {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-9 .hero-card .mini-stats .stat i {
    color: var(--accent-color);
}

.hero-9 .media-stack {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-inline: auto;
}

.hero-9 .media-stack .media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    background: var(--surface-color);
    transform-origin: center;
    transition: 0.3s;
}

.hero-9 .media-stack .media img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-9 .media-stack .media:hover {
    transform: translateY(-4px);
}

.hero-9 .media-stack .primary {
    transform: rotate(-2deg);
}

.hero-9 .media-stack .secondary {
    position: absolute;
    width: 70%;
    right: -8%;
    bottom: -10%;
    transform: rotate(6deg);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
    .hero-9 .media-stack .secondary {
        right: -2%;
        bottom: -6%;
        width: 68%;
    }
}

.hero-9 .media-stack .floating-badge {
    position: absolute;
    top: -14px;
    left: -14px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    animation: floatY 4s ease-in-out infinite;
}

.hero-9 .media-stack .floating-badge i {
    color: var(--accent-color);
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

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

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

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

@media (max-width: 1200px) {
    .hero-9 .hero-card {
        padding: 28px;
    }
}

@media (max-width: 992px) {
    .hero-9 {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-9 .hero-card .content h2 {
        font-size: clamp(28px, 4vw, 36px);
    }
}

@media (max-width: 576px) {
    .hero-9 .hero-card {
        padding: 22px;
    }

    .hero-9 .media-stack .floating-badge {
        transform: scale(0.95);
    }
}

/* --------------------------------------------------------------
# Hero 10 Section
-------------------------------------------------------------- */
.hero-10 {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-10 .hero-content h1 .highlight {
    color: var(--accent-color);
    position: relative;
}

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

@media (max-width: 768px) {
    .hero-10 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-10 .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-10 .hero-content h2 .typed {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-10 .hero-content h2 {
        font-size: 1.25rem;
    }
}

.hero-10 .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-10 .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

.hero-10 .hero-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

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

.hero-10 .hero-actions .btn.btn-outline:hover {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero-10 .hero-actions {
        flex-direction: column;
    }

    .hero-10 .hero-actions .btn {
        text-align: center;
    }
}

.hero-10 .social-links {
    display: flex;
    gap: 1rem;
}

.hero-10 .social-links a {
    width: 45px;
    height: 45px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.hero-10 .hero-image {
    position: relative;
}

.hero-10 .hero-image .image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.hero-10 .hero-image .image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    transition: transform 0.3s ease;
}

.hero-10 .hero-image .image-wrapper img:hover {
    transform: scale(1.02);
}

.hero-10 .hero-image .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-10 .hero-image .floating-elements .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

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

.hero-10 .hero-image .floating-elements .floating-card.design {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-10 .hero-image .floating-elements .floating-card.code {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.hero-10 .hero-image .floating-elements .floating-card.creativity {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

@media (max-width: 992px) {
    .hero-10 .hero-image .floating-elements .floating-card {
        display: none;
    }
}

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

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

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

/* --------------------------------------------------------------
# Hero 11 Section
-------------------------------------------------------------- */
.hero-11 {
    min-height: 60vh;
    padding: 120px 0;
    display: flex;
    align-items: center;

    /* Typographic system for hero */
    /* CTAs */
    /* Meta row */
    /* Portrait block */
    /* Gentle section visual calm */
    /* Spacing rhythm */
    /* Subtle parallax simulation for large screens */
    /* Responsive refinements */
}

.hero-11 .intro .eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    flex: 0 0 auto;
}

.hero-11 .intro .eyebrow .text {
    font-family: var(--nav-font);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-11 .intro .display-heading {
    font-family: var(--heading-font);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.hero-11 .intro .lead {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    max-width: 58ch;
}

.hero-11 .btn-ghost {
    --_border: color-mix(in srgb, var(--default-color), transparent 80%);
    --_hover: color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 1px solid var(--_border);
    color: var(--default-color);
    background-color: var(--surface-color);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.hero-11 .btn-ghost:hover,
.hero-11 .btn-ghost:focus {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 90%);
    outline: none;
}

.hero-11 .btn-ghost:active {
    transform: translateY(1px);
}

.hero-11 .link-underline {
    position: relative;
    color: var(--accent-color);
    font-weight: 400;
    padding-bottom: 2px;
    transition: color 0.3s ease-in-out;
}

.hero-11 .link-underline:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.hero-11 .link-underline:hover,
.hero-11 .link-underline:focus {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 4px;
}

.hero-11 .link-underline:hover:after,
.hero-11 .link-underline:focus:after {
    transform: scaleX(1);
    background: var(--accent-color);
}

.hero-11 .meta .meta-item {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-11 .meta .meta-item i {
    color: var(--accent-color);
}

.hero-11 .portrait-wrap .portrait-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
    transform: translateZ(0);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.hero-11 .portrait-wrap:hover .portrait-img {
    transform: scale(1.015);
    box-shadow: 0 28px 80px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero-11 .portrait-wrap .badge.note {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), var(--surface-color) 85%);
    color: var(--default-color);
    font-size: 13px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero-11 .portrait-wrap .badge.note i {
    color: var(--accent-color);
}

section .hero-11 {
    background: var(--background-color);
}

.hero-11 .cta-group {
    gap: 16px;
}

@media (min-width: 992px) {
    .hero-11 .portrait-wrap {
        will-change: transform;
    }
}

@media (max-width: 992px) {
    .hero-11 .intro .lead {
        font-size: 17px;
    }

    .hero-11 .portrait-wrap .badge.note {
        transform: scale(0.95);
    }
}

@media (max-width: 576px) {
    .hero-11 .intro .display-heading {
        font-size: 34px;
    }

    .hero-11 .cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------
# Hero 12 Section
-------------------------------------------------------------- */
.hero-12 {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-12 {
        padding: 100px 0 60px;
    }
}

.hero-12 .content-area {
    position: relative;
    z-index: 3;
}

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

.hero-12 .hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .hero-12 .hero-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-12 .hero-heading {
        font-size: 2.2rem;
    }
}

.hero-12 .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 992px) {
    .hero-12 .hero-description {
        margin-bottom: 2rem;
    }
}

.hero-12 .action-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-12 .action-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-12 .action-buttons {
        justify-content: center;
    }
}

@media (min-width: 993px) {
    .hero-12 .action-buttons {
        justify-content: flex-start;
    }
}

.hero-12 .primary-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.hero-12 .primary-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero-12 .primary-btn {
        width: 100%;
        text-align: center;
    }
}

.hero-12 .video-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.hero-12 .video-link:hover {
    color: var(--accent-color);
}

.hero-12 .video-link:hover .play-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.hero-12 .play-text {
    font-weight: 500;
}

.hero-12 .play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-12 .image-section {
    position: relative;
}

.hero-12 .hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-12 .pattern-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-12 .pattern-overlay {
        width: 150px;
        height: 150px;
        bottom: -20px;
        left: -20px;
    }
}

.hero-12 .main-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-12 .stats-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    max-width: 200px;
}

@media (max-width: 768px) {
    .hero-12 .stats-badge {
        position: relative;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: 0;
        width: fit-content;
    }
}

.hero-12 .stats-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-12 .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-12 .stats-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--default-color);
    font-weight: 500;
}

/* --------------------------------------------------------------
# Hero 13 Section
-------------------------------------------------------------- */
.hero-13 {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-13 .content-wrapper {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

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

.hero-13 .excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-13 .excellence-badge i {
    font-size: 1rem;
}

.hero-13 .main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
}

@media (max-width: 991px) {
    .hero-13 .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-13 .main-heading {
        font-size: 2rem;
    }
}

.hero-13 .description-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-13 .description-section {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-13 .description-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.hero-13 .action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-13 .action-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.hero-13 .action-link i {
    font-size: 1.25rem;
}

.hero-13 .description-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
    max-width: 400px;
}

@media (max-width: 576px) {
    .hero-13 .description-text {
        text-align: center;
    }
}

.hero-13 .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

.hero-13 .pattern-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-13 .image-section {
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .hero-13 .image-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero-13 .hero-image {
    position: relative;
    z-index: 2;
}

.hero-13 .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-13 .customer-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    z-index: 3;
    max-width: 280px;
}

@media (max-width: 991px) {
    .hero-13 .customer-stats {
        position: static;
        margin-top: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-13 .customer-stats {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.hero-13 .customer-avatars {
    margin-bottom: 1rem;
}

.hero-13 .avatar-list {
    display: flex;
    align-items: center;
    gap: -0.5rem;
}

.hero-13 .avatar-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--surface-color);
    overflow: hidden;
    margin-left: -0.5rem;
    position: relative;
}

.hero-13 .avatar-item:first-child {
    margin-left: 0;
}

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

.hero-13 .avatar-item.plus-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-13 .avatar-item.plus-icon i {
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-13 .stats-info {
    text-align: left;
}

.hero-13 .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.hero-13 .stats-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .hero-13 .row {
        flex-direction: column-reverse;
    }
}

/* --------------------------------------------------------------
# Hero 14 Section
-------------------------------------------------------------- */
.hero-14 {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.hero-14 .badge-wrapper .d-inline-flex {
    padding: 0.5rem 0.75rem;
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-14 .badge-wrapper .d-inline-flex .icon-circle {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-14 .badge-wrapper .d-inline-flex .icon-circle i {
    font-size: 0.875rem;
    color: var(--heading-color);
}

.hero-14 .badge-wrapper .d-inline-flex .badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

@media (max-width: 767.98px) {
    .hero-14 .badge-wrapper .d-inline-flex .badge-text {
        font-size: 0.75rem;
    }
}

.hero-14 .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

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

@media (max-width: 767.98px) {
    .hero-14 .hero-title {
        font-size: 1.75rem;
    }
}

.hero-14 .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--default-color);
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .hero-14 .hero-description {
        font-size: 1rem;
    }
}

.hero-14 .cta-wrapper .btn-primary {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.hero-14 .cta-wrapper .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-14 .hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-14 .hero-image:hover {
    transform: translateY(-5px);
}

.hero-14 .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-14 .feature-boxes {
    margin-top: 3rem;
}

.hero-14 .feature-boxes .feature-box {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 576px) {
    .hero-14 .feature-boxes .feature-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.hero-14 .feature-boxes .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.hero-14 .feature-boxes .feature-box .feature-icon i {
    font-size: 1.75rem;
    color: var(--heading-color);
}

.hero-14 .feature-boxes .feature-box .feature-content {
    flex: 1;
}

.hero-14 .feature-boxes .feature-box .feature-content .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.hero-14 .feature-boxes .feature-box .feature-content .feature-text {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .hero-14 .feature-boxes .feature-box {
        padding: 1.25rem;
    }

    .hero-14 .feature-boxes .feature-box .feature-icon {
        width: 50px;
        height: 50px;
    }

    .hero-14 .feature-boxes .feature-box .feature-icon i {
        font-size: 1.5rem;
    }

    .hero-14 .feature-boxes .feature-box .feature-title {
        font-size: 1.125rem;
    }

    .hero-14 .feature-boxes .feature-box .feature-text {
        font-size: 0.875rem;
    }
}

/* --------------------------------------------------------------
# Hero 15 Section
-------------------------------------------------------------- */
.hero-15 {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-15 .hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .hero-15 .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-15 .hero-content h2 {
        font-size: 2rem;
    }
}

.hero-15 .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--default-color);
}

.hero-15 .hero-content .hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .hero-15 .hero-content .hero-btns {
        flex-direction: column;
    }
}

.hero-15 .hero-content .hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.hero-15 .hero-content .hero-btns .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero-15 .hero-content .hero-btns .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

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

.hero-15 .hero-content .hero-stats {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 576px) {
    .hero-15 .hero-content .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.hero-15 .hero-content .hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-15 .hero-content .hero-stats .stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.hero-15 .hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-15 .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.hero-15 .hero-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .hero-15 {
        padding: 80px 0;
    }

    .hero-15 .hero-content {
        margin-bottom: 3rem;
        text-align: center;
    }

    .hero-15 .hero-content .hero-btns {
        justify-content: center;
    }

    .hero-15 .hero-content .hero-stats {
        justify-content: center;
    }
}

/* --------------------------------------------------------------
# Hero 16 Section
-------------------------------------------------------------- */
.hero-16 {
    padding-top: 80px;
}

.hero-16 .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.hero-16 .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-16 .image-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-16 .image-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
}

.hero-16 .image-grid .grid-item {
    overflow: hidden;
    border-radius: 15px;
}

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

.hero-16 .image-grid .grid-item img:hover {
    transform: scale(1.05);
}

.hero-16 .image-grid .item-1 {
    grid-column: 1/4;
    grid-row: 1/2;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-1 {
        grid-column: 1/7;
    }
}

.hero-16 .image-grid .item-2 {
    grid-column: 4/7;
    grid-row: 1/2;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-2 {
        grid-column: 1/4;
        grid-row: 2/3;
    }
}

.hero-16 .image-grid .item-3 {
    grid-column: 7/13;
    grid-row: 1/3;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-3 {
        grid-column: 4/7;
        grid-row: 2/3;
    }
}

.hero-16 .image-grid .item-4 {
    grid-column: 1/3;
    grid-row: 2/3;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-4 {
        grid-column: 1/3;
        grid-row: 3/4;
    }
}

.hero-16 .image-grid .item-5 {
    grid-column: 3/5;
    grid-row: 2/3;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-5 {
        grid-column: 3/5;
        grid-row: 3/4;
    }
}

.hero-16 .image-grid .item-6 {
    grid-column: 5/7;
    grid-row: 2/3;
}

@media (max-width: 768px) {
    .hero-16 .image-grid .item-6 {
        grid-column: 5/7;
        grid-row: 3/4;
    }
}

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

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

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

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

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

.hero-17 p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-17 .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-17 .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: var(--accent-color);
}

.hero-17 .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

.hero-17 .icon-box h3 a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: ease-in-out 0.3s;
}

.hero-17 .icon-box:hover {
    border-color: var(--accent-color);
}

.hero-17 .icon-box:hover h3 a {
    color: var(--accent-color);
}

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

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

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

.hero-18 .carousel {
    width: 100%;
    min-height: 70vh;
    padding: 0;
    margin: 0;
    position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
    .hero-18 .carousel {
        min-height: 100vh;
    }
}

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

.hero-18 .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

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

.hero-18 .container {
    background: color-mix(in srgb, var(--surface-color), transparent 40%);
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
    z-index: 3;
}

@media (max-width: 1200px) {
    .hero-18 .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.hero-18 h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

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

.hero-18 .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 50px;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.hero-18 .btn-get-started:hover {
    background: var(--surface-color);
    color: var(--accent-color);
}

.hero-18 .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero-18 .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero-18 .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero-18 .carousel-control-next {
        padding-right: 15px;
    }
}

.hero-18 .carousel-control-next-icon,
.hero-18 .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-18 .carousel-control-prev,
.hero-18 .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}

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

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

.hero-18 .carousel-control-prev:hover .carousel-control-next-icon,
.hero-18 .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-18 .carousel-control-next:hover .carousel-control-next-icon,
.hero-18 .carousel-control-next:hover .carousel-control-prev-icon {
    background: var(--accent-color);
    color: var(--default-color);
}

.hero-18 .carousel-indicators li {
    cursor: pointer;
    background: var(--default-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

.hero-18 .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

.hero-19 h2 span {
    color: var(--accent-color);
}

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

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

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

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

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

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

@media (min-width: 1024px) {
    .hero-19 .carousel-control-prev,
    .hero-19 .carousel-control-next {
        width: 5%;
    }
}

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

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

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

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

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

.hero-20 .fashion-hero-slider {
    height: 100vh;
    min-height: 600px;
}

.hero-20 .fashion-hero-slider .swiper-wrapper {
    height: auto !important;
}

.hero-20 .fashion-hero-slider .swiper-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-20 .hero-slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-20 .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .hero-20 .overlay-content {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    }
}

.hero-20 .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-20 .slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-20 .content-wrapper {
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .hero-20 .content-wrapper {
        text-align: center;
        padding: 0 1rem;
    }
}

.hero-20 .brand-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .hero-20 .brand-tagline {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.hero-20 .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--contrast-color);
}

@media (min-width: 768px) {
    .hero-20 .hero-title {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-20 .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.hero-20 .cta-section {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-20 .cta-section {
        margin-top: 3rem;
    }
}

.hero-20 .primary-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-20 .primary-cta:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .hero-20 .primary-cta {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .hero-20 .primary-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

.hero-20 .navigation-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-20 .navigation-controls {
        display: none;
    }
}

.hero-20 .nav-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--default-color);
    font-size: 1.25rem;
    pointer-events: all;
}

.hero-20 .nav-arrow:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

@media (min-width: 1200px) {
    .hero-20 .nav-arrow {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-20 .fashion-hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .hero-20 .swiper-slide {
        height: 80vh;
        min-height: 500px;
    }
}

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

.hero-21 .hero-container {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-21 .hero-container .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-21 .hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
    z-index: 2;
}

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

.hero-21 .hero-container .hero-content {
    padding-right: 30px;
}

.hero-21 .hero-container .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-21 .hero-container .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-21 .hero-container .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
}

.hero-21 .hero-container .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-21 .hero-container .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

.hero-21 .hero-container .hero-content .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-21 .hero-container .hero-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-21 .hero-container .hero-content .cta-buttons a {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 576px) {
    .hero-21 .hero-container .hero-content .cta-buttons a {
        width: 100%;
        max-width: 240px;
    }
}

.hero-21 .hero-container .hero-content .cta-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero-21 .hero-container .hero-content .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-21 .hero-container .hero-content .cta-buttons .btn-secondary {
    background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
    color: var(--default-color);
    border: 2px solid var(--surface-color);
}

.hero-21 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
    background-color: var(--surface-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-21 .hero-container .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.hero-21 .hero-container .stats-card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-21 .hero-container .stats-card .stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-21 .hero-container .stats-card .stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-21 .hero-container .stats-card .stats-header .decoration-line {
    height: 3px;
    width: 70px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.hero-21 .hero-container .stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-21 .hero-container .stats-card .stats-grid .stat-item {
    display: flex;
    align-items: center;
}

.hero-21 .hero-container .stats-card .stats-grid .stat-item .stat-icon {
    font-size: 1.8rem;
    height: 55px;
    width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-21 .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-21 .hero-container .stats-card .stats-grid .stat-item .stat-content p {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .hero-21 .hero-container .stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-21 .hero-container {
        text-align: center;
    }
}

.hero-21 .event-ticker {
    background-color: var(--accent-color);
    padding: 25px 0;
    color: var(--contrast-color);
}

.hero-21 .event-ticker .ticker-item {
    display: flex;
    align-items: center;
}

.hero-21 .event-ticker .ticker-item .date {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-21 .event-ticker .ticker-item .title {
    margin-right: 15px;
    font-size: 0.95rem;
}

.hero-21 .event-ticker .ticker-item .btn-register {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-21 .event-ticker .ticker-item .btn-register:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

/* --------------------------------------------------------------
# About 4 Section
-------------------------------------------------------------- */
.about-4 .text-accent {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.about-4 .about-title {
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
}

.about-4 .feature-list {
    list-style-type: none;
    padding-left: 0;
}

.about-4 .feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #484242;
    font-weight: 300;
}

.about-4 .feature-list li i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.about-4 .btn-accent {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.about-4 .btn-accent:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

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

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

.about-4 .image-wrapper img:last-child {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------
# About 5 Section
-------------------------------------------------------------- */
.about-5 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-5 .content ul {
    list-style: none;
    padding: 0;
}

.about-5 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# About 6 Section
-------------------------------------------------------------- */
.about-6 .content-title {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.about-6 .btn-cta {
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 6px;
}

.about-6 .list-check {
    margin-bottom: 50px;
}

.about-6 .list-check li {
    display: block;
    padding-left: 30px;
    position: relative;
}

.about-6 .list-check li:before {
    content: "\f26e";
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0.1rem;
    font-size: 20px;
    left: 0;
    color: var(--accent-color);
}

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

/* --------------------------------------------------------------
# About Me Section
-------------------------------------------------------------- */
.about-me .profile-image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-me .profile-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 4px solid var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-me .profile-image .profile-caption {
    margin-top: 1rem;
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-me .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.about-me .content .lead {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--default-color);
    font-family: 'Roboto', sans-serif;
}

.about-me .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-me .skills-grid .skill-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--surface-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-me .skills-grid .skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-me .skills-grid .skill-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.about-me .skills-grid .skill-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--default-color);
}

.about-me .quote-section blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 0;
}

.about-me .quote-section blockquote p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    margin: 0;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.about-me .cta-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.about-me .cta-buttons .btn.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.about-me .cta-buttons .btn.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .about-me .profile-image img {
        width: 220px;
        height: 220px;
    }

    .about-me .content h2 {
        font-size: 2rem;
    }

    .about-me .content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-me .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-me .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .about-me .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* --------------------------------------------------------------
# About Me 2 Section
-------------------------------------------------------------- */
.about-me-2 {
    position: relative;
}

.about-me-2 .profile-wrapper {
    position: relative;
}

.about-me-2 .profile-wrapper .profile-image-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto 30px;
}

.about-me-2 .profile-wrapper .profile-image-container .profile-image {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.about-me-2 .profile-wrapper .profile-image-container .experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about-me-2 .profile-wrapper .profile-image-container .experience-badge .years {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.about-me-2 .profile-wrapper .profile-image-container .experience-badge .text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-me-2 .profile-wrapper .quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.about-me-2 .profile-wrapper .quick-facts .fact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
}

.about-me-2 .profile-wrapper .quick-facts .fact-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.about-me-2 .about-content {
    padding-left: 40px;
}

@media (max-width: 992px) {
    .about-me-2 .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
}

.about-me-2 .about-content .intro-text {
    margin-bottom: 40px;
}

.about-me-2 .about-content .intro-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-me-2 .about-content .intro-text h2 .highlight {
    color: var(--accent-color);
    position: relative;
}

.about-me-2 .about-content .intro-text h2 .highlight::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 60%));
    border-radius: 2px;
}

.about-me-2 .about-content .intro-text h3 {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 400;
    margin-bottom: 25px;
}

.about-me-2 .about-content .intro-text p {
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 15px;
}

.about-me-2 .about-content .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .about-me-2 .about-content .skills-grid {
        grid-template-columns: 1fr;
    }
}

.about-me-2 .about-content .skills-grid .skill-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.about-me-2 .about-content .skills-grid .skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.about-me-2 .about-content .skills-grid .skill-card:hover .skill-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about-me-2 .about-content .skills-grid .skill-card .skill-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-me-2 .about-content .skills-grid .skill-card .skill-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-me-2 .about-content .skills-grid .skill-card .skill-info p {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    line-height: 1.4;
}

.about-me-2 .about-content .motto-section {
    position: relative;
    padding: 25px 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    margin-bottom: 40px;
}

.about-me-2 .about-content .motto-section i {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 24px;
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about-me-2 .about-content .motto-section p {
    margin: 0;
    padding-left: 25px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me-2 .about-content .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-me-2 .about-content .cta-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.about-me-2 .about-content .cta-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.about-me-2 .about-content .cta-buttons .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-me-2 .about-content .cta-buttons .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.about-me-2 .about-content .cta-buttons .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------
# Services 4 Section
-------------------------------------------------------------- */
.services-4 .services-showcase {
    margin-bottom: 6rem;
}

.services-4 .services-showcase .featured-service {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.services-4 .services-showcase .featured-service .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.services-4 .services-showcase .featured-service .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 20%) 0%, color-mix(in srgb, var(--accent-color), transparent 30%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content {
    text-align: center;
    color: var(--contrast-color);
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--contrast-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid var(--contrast-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content .service-link i {
    transition: transform 0.3s ease;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content .service-link:hover {
    color: var(--contrast-color);
    border-color: transparent;
}

.services-4 .services-showcase .featured-service .service-overlay .overlay-content .service-link:hover i {
    transform: translateX(5px);
}

.services-4 .services-showcase .featured-service:hover .service-overlay {
    opacity: 1;
}

.services-4 .services-showcase .featured-service:hover .service-overlay .overlay-content {
    transform: translateY(0);
}

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

.services-4 .services-showcase .services-list {
    display: flex;
    flex-direction: column;
    height: 600px;
    background: var(--surface-color);
}

.services-4 .services-showcase .services-list .service-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 4rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

.services-4 .services-showcase .services-list .service-item:last-child {
    border-bottom: none;
}

.services-4 .services-showcase .services-list .service-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(10px);
}

.services-4 .services-showcase .services-list .service-item .service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.services-4 .services-showcase .services-list .service-item .service-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.services-4 .services-showcase .services-list .service-item .service-content h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.services-4 .services-showcase .services-list .service-item .service-content h4 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-4 .services-showcase .services-list .service-item .service-content h4 a:hover {
    color: var(--accent-color);
}

.services-4 .services-showcase .services-list .service-item .service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.services-4 .additional-services .service-card {
    background: var(--surface-color);
    transition: all 0.4s ease;
    height: 100%;
}

.services-4 .additional-services .service-card .card-image {
    overflow: hidden;
    height: 250px;
}

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

.services-4 .additional-services .service-card .card-body {
    padding: 2.5rem 2rem;
}

.services-4 .additional-services .service-card .card-body h5 {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.services-4 .additional-services .service-card .card-body h5 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-4 .additional-services .service-card .card-body h5 a:hover {
    color: var(--accent-color);
}

.services-4 .additional-services .service-card .card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.services-4 .additional-services .service-card .card-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-4 .additional-services .service-card .card-body .read-more i {
    transition: transform 0.3s ease;
}

.services-4 .additional-services .service-card .card-body .read-more:hover {
    color: var(--heading-color);
}

.services-4 .additional-services .service-card .card-body .read-more:hover i {
    transform: translateX(3px);
}

.services-4 .additional-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

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

@media (max-width: 991px) {
    .services-4 .services-showcase .featured-service {
        height: 400px;
        margin-bottom: 2rem;
    }

    .services-4 .services-showcase .featured-service .service-overlay .overlay-content {
        padding: 1.5rem;
    }

    .services-4 .services-showcase .featured-service .service-overlay .overlay-content h3 {
        font-size: 2rem;
    }

    .services-4 .services-showcase .services-list .service-item {
        padding: 2rem;
    }
}

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

    .services-4 .intro-content {
        margin-bottom: 3rem;
    }

    .services-4 .services-showcase {
        margin-bottom: 4rem;
    }

    .services-4 .services-showcase .services-list .service-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .services-4 .services-showcase .services-list .service-item .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .services-4 .additional-services .service-card .card-body {
        padding: 2rem 1.5rem;
    }
}

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

.services-5 .featured-service-main {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-5 .service-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-5 .service-image-wrapper:hover img {
    transform: scale(1.02);
}

.services-5 .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, transparent 70%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
}

.services-5 .service-badge {
    background: var(--surface-color);
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-5 .service-badge i {
    font-size: 20px;
    color: var(--accent-color);
}

.services-5 .service-badge span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 14px;
}

.services-5 .service-details {
    padding: 40px 0 0 0;
}

.services-5 .service-details h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.services-5 .service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 32px;
}

.services-5 .main-cta {
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.services-5 .main-cta::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
}

.services-5 .main-cta:hover {
    color: var(--heading-color);
}

.services-5 .main-cta:hover::after {
    transform: scaleX(1.1);
}

.services-5 .services-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 60px;
}

.services-5 .service-item {
    padding: 32px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.services-5 .service-item:last-child {
    border-bottom: none;
}

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

.services-5 .service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.service-item:hover .services-5 .service-icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1);
}

.service-item:hover .services-5 .service-icon-wrapper i {
    color: var(--contrast-color);
}

.services-5 .service-info {
    flex: 1;
}

.services-5 .service-info h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--heading-color);
    line-height: 1.4;
}

.services-5 .service-info p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 12px;
}

.services-5 .service-link {
    font-size: 13px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-5 .service-link:hover {
    color: var(--heading-color);
}

.services-5 .specialties-grid {
    margin-top: 80px;
}

.services-5 .specialty-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.services-5 .specialty-card:hover {
    transform: translateY(-5px);
}

.services-5 .specialty-card:hover .specialty-image img {
    transform: scale(1.05);
}

.services-5 .specialty-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

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

.services-5 .specialty-content h5 {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.services-5 .specialty-content span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services-5 .services-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .services-5 .service-details h2 {
        font-size: 28px;
    }
}

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

    .services-5 .service-image-wrapper {
        height: 280px;
    }

    .services-5 .service-overlay {
        padding: 24px;
    }

    .services-5 .service-details {
        padding-top: 24px;
    }

    .services-5 .service-details h2 {
        font-size: 24px;
    }

    .services-5 .service-details p {
        font-size: 15px;
    }

    .services-5 .service-item {
        padding: 24px 0;
    }

    .services-5 .specialties-grid {
        margin-top: 50px;
    }

    .services-5 .specialty-image {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .services-5 .specialty-content h5 {
        font-size: 14px;
    }

    .services-5 .specialty-content span {
        font-size: 12px;
    }
}

/* --------------------------------------------------------------
# Services 6 Section
-------------------------------------------------------------- */
.services-6 .section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 300;
    margin: 0;
}

.services-6 .service-item {
    height: 100%;
    transition: all 0.4s ease;
}

.services-6 .service-item .service-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 32px;
}

.services-6 .service-item .service-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-6 .service-item .service-content h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.4;
}

.services-6 .service-item .service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.services-6 .service-item .service-content .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
}

.services-6 .service-item .service-content .service-link span {
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.services-6 .service-item .service-content .service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.services-6 .service-item .service-content .service-link:hover span {
    border-bottom-color: var(--accent-color);
}

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

.services-6 .service-item:hover .service-visual img {
    transform: scale(1.05);
}

.services-6 .cta-section {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
    padding: 64px 48px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-6 .cta-section h4 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.3;
}

.services-6 .cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-6 .cta-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.services-6 .cta-section .btn-primary i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-6 .cta-section .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

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

@media (max-width: 768px) {
    .services-6 .cta-section {
        padding: 48px 32px;
    }

    .services-6 .cta-section h4 {
        font-size: 28px;
    }

    .services-6 .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .services-6 .service-item .service-visual {
        margin-bottom: 24px;
    }

    .services-6 .service-item .service-visual img {
        height: 240px;
    }

    .services-6 .service-item .service-content h3 {
        font-size: 22px;
    }

    .services-6 .service-item .service-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

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

.service-details-2 .service-intro {
    text-align: center;
    margin-bottom: 80px;
}

.service-details-2 .service-intro .service-badge {
    margin-bottom: 24px;
}

.service-details-2 .service-intro .service-badge span {
    display: inline-block;
    padding: 8px 24px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-details-2 .service-intro h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .service-details-2 .service-intro h1 {
        font-size: 2.5rem;
    }
}

.service-details-2 .service-intro .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-details-2 .service-intro .lead {
        font-size: 1.1rem;
    }
}

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

.service-details-2 .visual-section {
    margin-bottom: 80px;
}

.service-details-2 .visual-section .service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-details-2 .visual-section .service-text {
    padding-left: 40px;
}

@media (max-width: 992px) {
    .service-details-2 .visual-section .service-text {
        padding-left: 0;
        margin-top: 40px;
    }
}

.service-details-2 .visual-section .service-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-2 .visual-section .service-text h2 {
        font-size: 1.8rem;
    }
}

.service-details-2 .visual-section .service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 20px;
}

.service-details-2 .visual-section .service-text p:last-child {
    margin-bottom: 0;
}

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

.service-details-2 .features-section .feature-item {
    text-align: center;
    padding: 0 20px;
}

.service-details-2 .features-section .feature-item .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-2 .features-section .feature-item .feature-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-details-2 .features-section .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--heading-color);
}

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

.service-details-2 .process-section {
    margin-bottom: 80px;
}

.service-details-2 .process-section .process-info {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .service-details-2 .process-section .process-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.service-details-2 .process-section .process-info h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-2 .process-section .process-info h3 {
        font-size: 1.6rem;
    }
}

.service-details-2 .process-section .process-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin: 0;
}

.service-details-2 .process-section .process-steps .step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.service-details-2 .process-section .process-steps .step:last-child {
    margin-bottom: 0;
}

.service-details-2 .process-section .process-steps .step .step-number {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 500;
}

.service-details-2 .process-section .process-steps .step .step-content h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.service-details-2 .process-section .process-steps .step .step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.service-details-2 .info-grid .info-card {
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 32px;
}

.service-details-2 .info-grid .info-card .info-header {
    margin-bottom: 24px;
}

.service-details-2 .info-grid .info-card .info-header h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.service-details-2 .info-grid .info-card .info-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.service-details-2 .info-grid .info-card .info-content .price-range {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-2 .info-grid .info-card .info-content .price-range .price-label {
    display: block;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details-2 .info-grid .info-card .info-content .price-range .price-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    display: block;
}

.service-details-2 .info-grid .info-card .info-content .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details-2 .info-grid .info-card .info-content .info-list li {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-details-2 .info-grid .info-card .info-content .info-list li:last-child {
    margin-bottom: 0;
}

.service-details-2 .info-grid .info-card .info-content .info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-details-2 .info-grid .info-card .testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 24px;
    font-style: italic;
}

.service-details-2 .info-grid .info-card .testimonial-content .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--heading-color);
}

.service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details-2 .info-grid .info-card .service-form .form-field {
    margin-bottom: 16px;
}

.service-details-2 .info-grid .info-card .service-form input[type=text],
.service-details-2 .info-grid .info-card .service-form input[type=email],
.service-details-2 .info-grid .info-card .service-form input[type=tel],
.service-details-2 .info-grid .info-card .service-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 14px;
    background-color: var(--surface-color);
    color: var(--default-color);
    transition: border-color 0.3s ease;
}

.service-details-2 .info-grid .info-card .service-form input[type=text]:focus,
.service-details-2 .info-grid .info-card .service-form input[type=email]:focus,
.service-details-2 .info-grid .info-card .service-form input[type=tel]:focus,
.service-details-2 .info-grid .info-card .service-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.service-details-2 .info-grid .info-card .service-form input[type=text]::placeholder,
.service-details-2 .info-grid .info-card .service-form input[type=email]::placeholder,
.service-details-2 .info-grid .info-card .service-form input[type=tel]::placeholder,
.service-details-2 .info-grid .info-card .service-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details-2 .info-grid .info-card .service-form .submit-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.service-details-2 .info-grid .info-card .service-form .submit-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.service-details-2 .info-grid .info-card .service-form .submit-btn i {
    font-size: 0.85rem;
}

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

    .service-details-2 .service-intro {
        margin-bottom: 60px;
    }

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

    .service-details-2 .visual-section,
    .service-details-2 .features-section,
    .service-details-2 .process-section {
        margin-bottom: 60px;
    }

    .service-details-2 .features-section .row>div {
        margin-bottom: 40px;
    }

    .service-details-2 .features-section .row>div:last-child {
        margin-bottom: 0;
    }

    .service-details-2 .info-grid .row>div {
        margin-bottom: 32px;
    }

    .service-details-2 .info-grid .row>div:last-child {
        margin-bottom: 0;
    }
}

/* --------------------------------------------------------------
# Features 4 Section
-------------------------------------------------------------- */
.features-4 .features-content h2 {
    font-size: 36px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.features-4 .features-content .lead {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.features-4 .features-image {
    position: relative;
}

.features-4 .features-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-4 .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.features-4 .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    transition: all 0.3s ease;
}

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

.features-4 .feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features-4 .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4834d4 20%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

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

.features-4 .feature-content h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

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

@media (max-width: 991px) {
    .features-4 .features-content {
        text-align: center;
    }

    .features-4 .features-content h2 {
        font-size: 28px;
    }

    .features-4 .features-grid {
        margin-top: 60px;
        gap: 30px;
    }

    .features-4 .feature-item {
        gap: 16px;
    }

    .features-4 .feature-icon {
        width: 50px;
        height: 50px;
    }

    .features-4 .feature-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .features-4 .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-4 .features-content h2 {
        font-size: 24px;
    }

    .features-4 .features-content .lead {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------
# Features 5 Section
-------------------------------------------------------------- */
.features-5 {
    padding: 80px 0;
    background-color: var(--background-color);
}

.features-5 .features-content {
    padding-right: 30px;
}

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

.features-5 .features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .features-5 .features-content h2 {
        font-size: 2rem;
    }
}

.features-5 .features-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.features-5 .features-content p {
    margin-bottom: 2rem;
    color: var(--default-color);
}

.features-5 .features-content .features-list .feature-item {
    display: flex;
    margin-bottom: 2rem;
}

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

.features-5 .features-content .features-list .feature-item .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.features-5 .features-content .features-list .feature-item .feature-icon:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
}

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

.features-5 .features-content .features-list .feature-item .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.features-5 .features-image {
    position: relative;
}

.features-5 .features-image .main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.features-5 .features-image .stats-card {
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 2;
    width: 220px;
}

@media (max-width: 768px) {
    .features-5 .features-image .stats-card {
        width: 180px;
        padding: 15px;
        top: -20px;
        left: -10px;
    }
}

.features-5 .features-image .stats-card .stat-item {
    text-align: center;
}

.features-5 .features-image .stats-card .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .features-5 .features-image .stats-card .stat-item h3 {
        font-size: 1.2rem;
    }
}

.features-5 .features-image .stats-card .stat-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .features-5 .features-image .stats-card .stat-item p {
        font-size: 0.7rem;
    }
}

.features-5 .features-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@media (max-width: 768px) {
    .features-5 .features-image .experience-badge {
        padding: 15px;
        right: 0;
    }
}

.features-5 .features-image .experience-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-5 .features-image .experience-badge .badge-content .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .features-5 .features-image .experience-badge .badge-content .number {
        font-size: 2rem;
    }
}

.features-5 .features-image .experience-badge .badge-content .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* --------------------------------------------------------------
# Features 6 Section
-------------------------------------------------------------- */
.features-6 .features-image {
    position: relative;
    min-height: 400px;
}

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

.features-6 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-6 .icon-box {
    margin-top: 30px;
}

.features-6 .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.features-6 .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.features-6 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Features 7 Section
-------------------------------------------------------------- */
.features-7 {
    padding: 0;
}

.features-7 .video-play {
    min-height: 400px;
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/bg-4.webp") center center;
    background-size: cover;
}

.features-7 .content {
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 768px) {
    .features-7 .content {
        padding: 80px;
    }
}

.features-7 .content h3 {
    font-weight: 600;
    font-size: 32px;
}

.features-7 .content ul {
    list-style: none;
    padding: 0;
}

.features-7 .content ul li {
    padding-bottom: 10px;
}

.features-7 .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features-7 .content p:last-child {
    margin-bottom: 0;
}

.features-7 .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.features-7 .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.features-7 .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    padding-right: 19px;
}

.features-7 .content .read-more:hover i {
    margin-left: 10px;
}

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

/* --------------------------------------------------------------
# Portfolio 2 Section
-------------------------------------------------------------- */
.portfolio-2 .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .portfolio-2 .portfolio-filters {
        gap: 12px;
        margin-bottom: 32px;
    }
}

.portfolio-2 .portfolio-filters li {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 768px) {
    .portfolio-2 .portfolio-filters li {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.portfolio-2 .portfolio-filters li:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.portfolio-2 .portfolio-wrapper {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.portfolio-2 .portfolio-wrapper:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.portfolio-2 .portfolio-wrapper .portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.portfolio-2 .portfolio-wrapper .portfolio-image .portfolio-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-2 .portfolio-wrapper .portfolio-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    font-family: 'Roboto', sans-serif;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-header .portfolio-year {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    white-space: nowrap;
    padding-top: 4px;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-description {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics {
    display: flex;
    gap: 24px;
}

@media (max-width: 576px) {
    .portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics {
        width: 100%;
        justify-content: space-between;
    }
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item {
    display: flex;
    flex-direction: column;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item .metric-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item .metric-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions {
        width: 100%;
    }
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link i {
    font-size: 14px;
}

.portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 576px) {
    .portfolio-2 .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link {
        flex: 1;
        justify-content: center;
    }
}

.portfolio-2 .portfolio-wrapper:hover .portfolio-image img {
    transform: scale(1.02);
}

.portfolio-2 .portfolio-cta {
    margin-top: 64px;
    padding: 40px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 6px;
}

@media (max-width: 992px) {
    .portfolio-2 .portfolio-cta {
        padding: 32px 24px;
    }
}

.portfolio-2 .portfolio-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .portfolio-2 .portfolio-cta h3 {
        font-size: 22px;
    }
}

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

.portfolio-2 .portfolio-cta .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.portfolio-2 .portfolio-cta .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 992px) {
    .portfolio-2 .portfolio-cta .col-lg-3 {
        text-align: left !important;
        margin-top: 20px;
    }
}

/* --------------------------------------------------------------
# Portfolio Details 2 Section
-------------------------------------------------------------- */
.portfolio-details-2 {
    --section-spacing: 6rem;
    --content-spacing: 4rem;
}

.portfolio-details-2 .project-intro {
    margin-bottom: var(--section-spacing);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-details-2 .project-intro .intro-content .project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.portfolio-details-2 .project-intro .intro-content .project-meta .project-type,
.portfolio-details-2 .project-intro .intro-content .project-meta .project-year {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    position: relative;
}

.portfolio-details-2 .project-intro .intro-content .project-meta .project-type::after {
    content: "•";
    position: absolute;
    right: -1rem;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.portfolio-details-2 .project-intro .intro-content .project-title {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.portfolio-details-2 .project-intro .intro-content .project-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-details-2 .project-showcase {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .project-showcase .showcase-slider {
    border-radius: 12px;
    overflow: hidden;
}

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

.portfolio-details-2 .project-showcase .showcase-slider .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.portfolio-details-2 .project-showcase .showcase-slider .swiper-pagination {
    bottom: 30px;
}

.portfolio-details-2 .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-details-2 .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: white;
    transform: scale(1.2);
}

.portfolio-details-2 .project-details-grid {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .project-details-grid .project-narrative h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.portfolio-details-2 .project-details-grid .project-narrative p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.portfolio-details-2 .project-details-grid .project-narrative p:last-child {
    margin-bottom: 0;
}

.portfolio-details-2 .project-details-grid .project-info {
    padding-left: 3rem;
}

.portfolio-details-2 .project-details-grid .project-info .info-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details-2 .project-details-grid .project-info .info-block:last-child {
    border-bottom: none;
}

.portfolio-details-2 .project-details-grid .project-info .info-block .info-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.5rem;
}

.portfolio-details-2 .project-details-grid .project-info .info-block .info-value {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--heading-color);
}

.portfolio-details-2 .solution-approach {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .solution-approach .approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.portfolio-details-2 .solution-approach .approach-header h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.portfolio-details-2 .solution-approach .approach-header p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.portfolio-details-2 .solution-approach .approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.portfolio-details-2 .solution-approach .approach-steps .step-item .step-number {
    font-size: 3rem;
    font-weight: 200;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    margin-bottom: 1rem;
    line-height: 1;
}

.portfolio-details-2 .solution-approach .approach-steps .step-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details-2 .solution-approach .approach-steps .step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.portfolio-details-2 .project-gallery {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .project-gallery h2 {
    font-size: 2.75rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.portfolio-details-2 .project-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.portfolio-details-2 .project-gallery .gallery-grid .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-details-2 .project-gallery .gallery-grid .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-details-2 .project-gallery .gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-details-2 .project-gallery .gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
}

.portfolio-details-2 .project-gallery .gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.portfolio-details-2 .technologies-used {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .technologies-used h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.portfolio-details-2 .technologies-used p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group {
    margin-bottom: 2.5rem;
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group:last-child {
    margin-bottom: 0;
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group .tech-tags .tech-tag {
    padding: 0.5rem 1.25rem;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.portfolio-details-2 .technologies-used .tech-stack .tech-group .tech-tags .tech-tag:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.portfolio-details-2 .project-outcomes {
    background-color: color-mix(in srgb, var(--surface-color), transparent 60%);
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: var(--section-spacing);
}

.portfolio-details-2 .project-outcomes .outcomes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-details-2 .project-outcomes .outcomes-header h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--heading-color);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.portfolio-details-2 .project-outcomes .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.portfolio-details-2 .project-outcomes .outcomes-grid .outcome-card {
    text-align: center;
}

.portfolio-details-2 .project-outcomes .outcomes-grid .outcome-card .outcome-stat {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.portfolio-details-2 .project-outcomes .outcomes-grid .outcome-card .outcome-label {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.4;
}

.portfolio-details-2 .project-navigation {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 3rem;
}

.portfolio-details-2 .project-navigation .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.prev,
.portfolio-details-2 .project-navigation .nav-container .nav-item.next {
    color: var(--heading-color);
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.prev .nav-label,
.portfolio-details-2 .project-navigation .nav-container .nav-item.next .nav-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.25rem;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.prev .nav-title,
.portfolio-details-2 .project-navigation .nav-container .nav-item.next .nav-title {
    font-size: 1.125rem;
    font-weight: 400;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.prev:hover,
.portfolio-details-2 .project-navigation .nav-container .nav-item.next:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.next {
    text-align: right;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.center {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 6px;
    color: var(--heading-color);
    font-weight: 400;
    transition: all 0.3s ease;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.center i {
    font-size: 1.125rem;
}

.portfolio-details-2 .project-navigation .nav-container .nav-item.center:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .portfolio-details-2 .project-details-grid .project-info {
        padding-left: 2rem;
    }

    .portfolio-details-2 .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .portfolio-details-2 .gallery-grid .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .portfolio-details-2 .project-intro .intro-content .project-title {
        font-size: 3rem;
    }

    .portfolio-details-2 .project-details-grid .project-info {
        padding-left: 0;
        margin-top: 3rem;
    }

    .portfolio-details-2 .approach-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portfolio-details-2 .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .portfolio-details-2 .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-details-2 {
        --section-spacing: 4rem;
    }

    .portfolio-details-2 .project-intro .intro-content .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .portfolio-details-2 .project-intro .intro-content .project-meta .project-type::after {
        display: none;
    }

    .portfolio-details-2 .project-intro .intro-content .project-title {
        font-size: 2.5rem;
    }

    .portfolio-details-2 .project-intro .intro-content .project-description {
        font-size: 1.125rem;
    }

    .portfolio-details-2 .project-showcase .showcase-slider .swiper-slide img {
        height: 400px;
    }

    .portfolio-details-2 .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .portfolio-details-2 .gallery-grid .gallery-item.featured {
        grid-column: span 1;
    }

    .portfolio-details-2 .project-outcomes {
        padding: 3rem 2rem;
    }

    .portfolio-details-2 .project-outcomes .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-details-2 .project-navigation .nav-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-details-2 .project-navigation .nav-container .nav-item.prev,
    .portfolio-details-2 .project-navigation .nav-container .nav-item.next {
        text-align: center;
    }

    .portfolio-details-2 .project-navigation .nav-container .nav-item.center {
        order: -1;
    }
}

@media (max-width: 576px) {
    .portfolio-details-2 .project-outcomes {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}

/* --------------------------------------------------------------
# Portfolio Details 3 Section
-------------------------------------------------------------- */
.portfolio-details-3 {
    --section-spacing: 5rem;
    --content-spacing: 4rem;
    --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details-3 .project-hero {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .project-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.portfolio-details-3 .project-hero .hero-content .project-category {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.portfolio-details-3 .project-hero .hero-content .project-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.portfolio-details-3 .project-hero .hero-content .project-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 400;
    margin-bottom: 0;
}

.portfolio-details-3 .project-hero .project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column {
    text-align: center;
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column .meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.5rem;
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column .meta-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
}

.portfolio-details-3 .visual-showcase {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .visual-showcase .main-visual {
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-wrapper {
    height: auto !important;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 600;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
    left: 30px;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next {
    right: 30px;
}

.portfolio-details-3 .content-section {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .content-section .project-overview {
    text-align: center;
}

.portfolio-details-3 .content-section .project-overview h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.portfolio-details-3 .content-section .project-overview .overview-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 4rem;
}

.portfolio-details-3 .content-section .project-overview .challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.portfolio-details-3 .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details-3 .content-section .project-overview .challenge-solution .solution-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details-3 .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details-3 .content-section .project-overview .challenge-solution .solution-block p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details-3 .metrics-showcase {
    padding: 4rem 0;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    margin: var(--section-spacing) -15px;
    border-radius: 8px;
}

.portfolio-details-3 .metrics-showcase .metrics-content h3 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details-3 .metrics-showcase .metrics-content p {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details-3 .metrics-showcase .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item {
    text-align: center;
    padding: 1.5rem;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item .metric-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item .metric-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 1.4;
}

.portfolio-details-3 .technology-stack {
    margin-bottom: var(--section-spacing);
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details-3 .technology-stack h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 0;
}

.portfolio-details-3 .technology-stack .tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .category-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    transform: translateY(-2px);
}

.portfolio-details-3 .process-gallery {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .process-gallery h3 {
    font-size: 2.25rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.portfolio-details-3 .process-gallery .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item.large {
    grid-row: span 2;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover {
    transform: translateY(-5px);
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover img {
    transform: scale(1.05);
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.portfolio-details-3 .key-features-section {
    margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .key-features-section .features-intro {
    padding-right: 2rem;
}

.portfolio-details-3 .key-features-section .features-intro h3 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.portfolio-details-3 .key-features-section .features-intro p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.portfolio-details-3 .key-features-section .features-list .feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.portfolio-details-3 .key-features-section .features-list .feature-row:last-child {
    margin-bottom: 0;
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 0;
}

.portfolio-details-3 .project-footer {
    padding-top: 3rem;
    border-top: var(--subtle-border);
}

.portfolio-details-3 .project-footer .footer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
    color: var(--heading-color);
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project .nav-direction {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.25rem;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project .nav-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
    text-align: right;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 25px;
    color: var(--heading-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects i {
    font-size: 1rem;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .portfolio-details-3 .project-hero .hero-content .project-title {
        font-size: 3rem;
    }

    .portfolio-details-3 .project-hero .project-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-details-3 .content-section .project-overview .challenge-solution {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-details-3 .content-section .project-overview h2 {
        font-size: 2.25rem;
    }

    .portfolio-details-3 .metrics-showcase .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-details-3 .key-features-section .features-intro {
        margin-bottom: 2rem;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .portfolio-details-3 {
        --section-spacing: 3rem;
    }

    .portfolio-details-3 .project-hero .hero-content .project-title {
        font-size: 2.5rem;
    }

    .portfolio-details-3 .project-hero .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-details-3 .visual-showcase .main-visual .swiper-slide img {
        height: 400px;
    }

    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next,
    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next::after,
    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev::after {
        font-size: 0.9rem;
    }

    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
        left: 15px;
    }

    .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next {
        right: 15px;
    }

    .portfolio-details-3 .content-section .project-overview h2 {
        font-size: 2rem;
    }

    .portfolio-details-3 .project-footer .footer-navigation {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project,
    .portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
        text-align: center;
    }

    .portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects {
        order: -1;
    }

    .portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .portfolio-details-3 .gallery-masonry {
        grid-template-columns: 1fr !important;
    }

    .portfolio-details-3 .gallery-masonry .gallery-item.large {
        grid-row: span 1;
    }

    .portfolio-details-3 .metrics-showcase {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

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

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

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

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

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

@media (max-width: 575px) {
    .portfolio-details-4 .swiper-button-prev,
    .portfolio-details-4 .swiper-button-next {
        display: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Promo Cards Section
-------------------------------------------------------------- */
.promo-cards .promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 400px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.promo-cards .promo-card .promo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-cards .promo-card .promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.promo-cards .promo-card .promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: 0.3s;
}

.promo-cards .promo-card .promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 3;
    transition: all 0.4s ease;
}

.promo-cards .promo-card .promo-content .promo-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-cards .promo-card .promo-content .promo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--contrast-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.promo-cards .promo-card .promo-content .btn-promo {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background-color: transparent;
    color: var(--contrast-color);
    transition: all 0.3s ease;
    border: 2px solid var(--contrast-color);
}

.promo-cards .promo-card .promo-content .btn-promo:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

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

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

.promo-cards .promo-card:hover .promo-content {
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .promo-cards .promo-card {
        height: 350px;
    }

    .promo-cards .promo-card .promo-content {
        padding: 1.5rem;
    }

    .promo-cards .promo-card .promo-content .promo-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .promo-cards .promo-card {
        height: 300px;
    }

    .promo-cards .promo-card .promo-content {
        padding: 1.2rem;
    }

    .promo-cards .promo-card .promo-content .promo-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .promo-cards .promo-card .promo-content .promo-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .promo-cards .promo-card .promo-content .btn-promo {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .promo-cards .promo-card {
        height: 280px;
    }

    .promo-cards .promo-card .promo-content .promo-title {
        font-size: 1.2rem;
    }
}

/* --------------------------------------------------------------
# Call To Action Section
-------------------------------------------------------------- */
.call-to-action {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
    position: relative;
    border-radius: 20px;
    background-color: var(--surface-color);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
    overflow: hidden;
}

.call-to-action .cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.call-to-action .cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    top: -150px;
    right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
    bottom: -100px;
    left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
    top: 30%;
    left: -75px;
}

.call-to-action .cta-content {
    position: relative;
    z-index: 2;
}

.call-to-action .cta-content .badge-custom {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.call-to-action .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
}

.call-to-action .cta-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.05rem;
    line-height: 1.6;
}

.call-to-action .benefits-row {
    margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
    margin: 0;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.5;
}

.call-to-action .action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.call-to-action .action-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: none;
}

.call-to-action .action-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.call-to-action .action-buttons .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-buttons .btn.btn-outline {
    background-color: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    color: var(--accent-color);
}

.call-to-action .action-buttons .btn.btn-outline:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    color: var(--heading-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.call-to-action .cta-image-container {
    position: relative;
    height: 100%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    z-index: 2;
}

.call-to-action .cta-image-container .main-image {
    position: relative;
    z-index: 2;
    max-height: 400px;
    object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
    position: absolute;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
    top: 20%;
    left: 0;
    animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 25%;
    right: 0;
    animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
    position: absolute;
    width: 170px;
    height: 170px;
    background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
    background-size: 15px 15px;
    bottom: 10%;
    left: 10%;
    z-index: 1;
    border-radius: 20px;
    opacity: 0.6;
}

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

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

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

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

@media (max-width: 991.98px) {
    .call-to-action {
        padding: 70px 0;
    }

    .call-to-action .row {
        flex-direction: column-reverse;
    }

    .call-to-action .cta-image-container {
        padding: 2rem;
        min-height: 350px;
    }

    .call-to-action .cta-image-container .floating-element.element-1 {
        top: 15%;
        left: 10%;
    }

    .call-to-action .cta-image-container .floating-element.element-2 {
        bottom: 15%;
        right: 10%;
    }

    .call-to-action .cta-content {
        padding: 2rem !important;
    }

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

    .call-to-action .action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .call-to-action .action-buttons .btn {
        width: 100%;
    }

    .call-to-action .action-buttons .guarantee-badge {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .call-to-action {
        padding: 50px 0;
    }

    .call-to-action .cta-content {
        padding: 1.5rem !important;
    }

    .call-to-action .cta-content h2 {
        font-size: 1.75rem;
    }

    .call-to-action .benefits-row .col-md-6 {
        margin-bottom: 1rem;
    }

    .call-to-action .cta-image-container {
        min-height: 300px;
    }

    .call-to-action .cta-image-container .floating-element {
        padding: 0.5rem 0.75rem;
    }

    .call-to-action .cta-image-container .floating-element span {
        font-size: 0.8rem;
    }

    .call-to-action .shape {
        transform: scale(0.7);
    }
}

/* --------------------------------------------------------------
# Call To Action 2 Section
-------------------------------------------------------------- */
.call-to-action-2 .container {
    padding: 80px 80px 0 80px;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 15px;
}

@media (max-width: 992px) {
    .call-to-action-2 .container {
        padding: 60px 60px 0 60px;
    }
}

@media (max-width: 575px) {
    .call-to-action-2 .container {
        padding: 25px 15px 0 15px;
        border-radius: 0;
    }
}

.call-to-action-2 .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.call-to-action-2 .cta-form .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border: 1px solid var(--accent-color);
    padding-left: 20px;
}

.call-to-action-2 .cta-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.call-to-action-2 .cta-form .btn {
    height: 50px;
    border-radius: 0 25px 25px 0;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
    .call-to-action-2 .cta-form .btn {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .call-to-action-2 .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .call-to-action-2 .cta-image {
        text-align: center;
    }
}

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

.call-to-action-3 .container {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 15px);
}

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

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

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

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

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

.call-to-action-3 .pulsating-play-btn {
    display: inline-block;
}

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

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

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

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

/* --------------------------------------------------------------
# Contact 2 Section
-------------------------------------------------------------- */
.contact-2 .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-2 .contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.contact-2 .contact-info-item .info-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.contact-2 .contact-info-item .info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-2 .contact-info-item .info-content p {
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
}

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

.contact-2 .contact-form-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.contact-2 .contact-form-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-2 .contact-form-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-2 .contact-form-card .form-control {
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 15px 20px;
    height: calc(3.5rem + 2px);
    background-color: var(--surface-color);
    color: var(--default-color);
    margin-bottom: 20px;
}

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

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

.contact-2 .contact-form-card textarea.form-control {
    min-height: 150px;
    margin-bottom: 25px;
}

.contact-2 .btn-submit {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-2 .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-2 .map-container {
    position: relative;
    margin-top: 50px;
    padding: 0;
}

.contact-2 .map-container .map-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--background-color), transparent);
    z-index: 10;
}

.contact-2 .map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact-2 .contact-form-card {
        padding: 30px;
    }

    .contact-2 .map-container {
        margin-top: 40px;
    }

    .contact-2 .map-container .map-overlay {
        top: -25px;
        height: 50px;
    }

    .contact-2 .map-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-2 .contact-info-wrapper {
        gap: 25px;
    }

    .contact-2 .contact-info-item {
        gap: 15px;
    }

    .contact-2 .contact-info-item .info-icon {
        width: 50px;
        height: 50px;
    }

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

    .contact-2 .contact-form-card h2 {
        font-size: 24px;
    }

    .contact-2 .map-container {
        margin-top: 30px;
    }

    .contact-2 .map-container .map-overlay {
        top: -20px;
        height: 40px;
    }

    .contact-2 .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-2 .contact-form-card {
        padding: 20px;
    }

    .contact-2 .map-container {
        margin-top: 25px;
    }

    .contact-2 .map-container .map-overlay {
        top: -15px;
        height: 30px;
    }

    .contact-2 .map-container iframe {
        height: 350px;
        border-radius: 8px;
    }
}

/* --------------------------------------------------------------
# Contact 3 Section
-------------------------------------------------------------- */
.contact-3 {
    overflow: hidden;
}

.contact-3 .info-box {
    color: var(--default-color);
    background: var(--surface-color);
    padding: 30px;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-3 .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.contact-3 .info-box i {
    font-size: 32px;
    color: var(--accent-color);
    border-radius: 50%;
    padding: 15px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}

.contact-3 .info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-3 .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
}

.contact-3 .map-container {
    overflow: hidden;
    padding-bottom: 500px;
    position: relative;
    height: 0;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-3 .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

@media (max-width: 992px) {
    .contact-3 .map-container {
        padding-bottom: 350px;
    }
}

@media (max-width: 768px) {
    .contact-3 .map-container {
        padding-bottom: 300px;
    }
}

.contact-3 .php-email-form {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    background: var(--surface-color);
    border-radius: 15px;
}

.contact-3 .php-email-form .form-control {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-3 .php-email-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-3 .php-email-form .form-control::placeholder {
    color: #adb5bd;
}

.contact-3 .php-email-form textarea.form-control {
    min-height: 120px;
}

.contact-3 .php-email-form button[type=submit] {
    background: var(--accent-color);
    border: 0;
    padding: 12px 34px;
    color: var(--contrast-color);
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-3 .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: scale(1.05);
}

.contact-3 .php-email-form .loading,
.contact-3 .php-email-form .error-message,
.contact-3 .php-email-form .sent-message {
    display: none;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 500;
    border-radius: 10px;
}

.contact-3 .php-email-form .loading {
    background: #fff;
    color: var(--accent-color);
}

.contact-3 .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: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact-3 .php-email-form .error-message {
    color: #fff;
    background: #ed3c0d;
}

.contact-3 .php-email-form .sent-message {
    color: #fff;
    background: #18d26e;
}

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

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

.contact-3 .social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-3 .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-3 .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .contact-3 .info-box {
        margin-bottom: 20px;
        padding: 20px;
    }

    .contact-3 .php-email-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-3 .info-box {
        padding: 15px;
    }

    .contact-3 .info-box i {
        font-size: 28px;
        padding: 12px;
    }

    .contact-3 .info-box h3 {
        font-size: 18px;
    }

    .contact-3 .social-links {
        gap: 12px;
    }

    .contact-3 .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

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

.gallery .gallery-container {
    padding: 20px 0 40px;
    position: relative;
}

.gallery .swiper-wrapper {
    height: auto !important;
    align-items: center;
    padding: 30px 0;
}

.gallery .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

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

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

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

.gallery .gallery-img .gallery-overlay i {
    color: var(--contrast-color);
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

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

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

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--accent-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
    color: var(--accent-color);
    background: var(--surface-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
    opacity: 0.9;
}

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

@media (max-width: 991px) {
    .gallery .gallery-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

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

@media (max-width: 767px) {
    .gallery .swiper-wrapper {
        padding: 15px 0;
    }

    .gallery .gallery-img .gallery-overlay i {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------
# Skills 2 Section
-------------------------------------------------------------- */
.skills-2 {
    --skill-spacing: 40px;
    --icon-size: 60px;
    --progress-height: 4px;
    --border-subtle: color-mix(in srgb, var(--default-color), transparent 90%);
    --text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
    --surface-elevated: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
}

.skills-2 .intro-content {
    margin-bottom: 80px;
}

.skills-2 .intro-content .lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
}

.skills-2 .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--skill-spacing);
    margin-bottom: 60px;
}

.skills-2 .skill-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.skills-2 .skill-item:hover {
    transform: translateY(-4px);
}

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

.skills-2 .skill-item .skill-icon {
    margin-bottom: 24px;
}

.skills-2 .skill-item .skill-icon i {
    font-size: var(--icon-size);
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.skills-2 .skill-item .skill-name {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.3;
}

.skills-2 .skill-item .skill-level {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.skills-2 .skill-item .skill-level .level-text {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 90px;
}

.skills-2 .skill-item .skill-level .progress-track {
    flex: 1;
    height: var(--progress-height);
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
}

.skills-2 .skill-item .skill-level .progress-track .progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-2 .skill-item .skill-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.skills-2 .certification-area {
    padding-top: 60px;
    border-top: 1px solid var(--border-subtle);
}

.skills-2 .certification-area .cert-content .cert-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--heading-color);
}

.skills-2 .certification-area .cert-content .cert-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.skills-2 .certification-area .cert-content .cert-list .cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-subtle);
}

.skills-2 .certification-area .cert-content .cert-list .cert-item:last-child {
    border-bottom: none;
}

.skills-2 .certification-area .cert-content .cert-list .cert-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.skills-2 .certification-area .cert-content .cert-list .cert-item span {
    font-size: 16px;
    color: var(--default-color);
}

.skills-2 .certification-area .tools-showcase .tools-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.skills-2 .certification-area .tools-showcase .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skills-2 .certification-area .tools-showcase .tools-grid .tool-tag {
    padding: 8px 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 14px;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.skills-2 .certification-area .tools-showcase .tools-grid .tool-tag:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .skills-2 .skills-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skills-2 .skill-item {
        padding: 28px 0;
    }

    .skills-2 .skill-item .skill-name {
        font-size: 22px;
    }

    .skills-2 .cert-content .cert-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .skills-2 {
        --skill-spacing: 24px;
        --icon-size: 50px;
    }

    .skills-2 .intro-content {
        margin-bottom: 60px;
    }

    .skills-2 .intro-content .lead-text {
        font-size: 18px;
    }

    .skills-2 .certification-area {
        padding-top: 40px;
    }

    .skills-2 .certification-area .tools-showcase {
        margin-top: 40px;
    }
}

/* --------------------------------------------------------------
# Post Details Section
-------------------------------------------------------------- */
.post-details {
    max-width: 1000px;
    margin: 0 auto;
}

.post-details .hero-img {
    position: relative;
    width: 100%;
    height: 500px;
    margin: -60px auto 3rem;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-details .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-details .hero-img .meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.post-details .hero-img .meta-overlay .meta-categories .category {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-details .hero-img .meta-overlay .meta-categories .category:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.post-details .hero-img .meta-overlay .meta-categories .divider {
    color: var(--contrast-color);
    margin: 0 0.75rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time {
    color: var(--contrast-color);
    font-size: 0.9rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .post-details .hero-img {
        height: 350px;
        margin-top: -30px;
        margin-bottom: 2rem;
    }
}

.post-details .article-content {
    padding: 0 1rem;
}

.post-details .article-content .content-header {
    margin-bottom: 3rem;
}

.post-details .article-content .content-header .title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .post-details .article-content .content-header .title {
        font-size: 2rem;
    }
}

.post-details .article-content .content-header .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .article-content .content-header .author-info .author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-details .article-content .content-header .author-info .author-details .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-details .article-content .content-header .author-info .author-details .info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.post-details .article-content .content-header .author-info .author-details .info .role {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .article-content .content-header .author-info .post-meta {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.post-details .article-content .content-header .author-info .post-meta i {
    margin-right: 0.3rem;
}

.post-details .article-content .content-header .author-info .post-meta .divider {
    margin: 0 0.75rem;
}

.post-details .article-content .content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.post-details .article-content .content .lead {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.post-details .article-content .content h2 {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 3rem 0 1.5rem;
}

.post-details .article-content .content p {
    margin-bottom: 1.5rem;
}

.post-details .article-content .content ul {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.post-details .article-content .content ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.post-details .article-content .content .content-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details .article-content .content .content-image.right-aligned {
    float: right;
    max-width: 450px;
    margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
    .post-details .article-content .content .content-image.right-aligned {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.post-details .article-content .content .content-image img {
    width: 100%;
    height: auto;
}

.post-details .article-content .content .content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.post-details .article-content .content .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.post-details .article-content .content .highlight-box h3 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.post-details .article-content .content .highlight-box .trend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-details .article-content .content .highlight-box .trend-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.post-details .article-content .content .highlight-box .trend-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.post-details .article-content .content .highlight-box .trend-list li span {
    color: var(--heading-color);
    font-weight: 500;
}

.post-details .article-content .content .content-grid {
    margin: 3rem 0;
}

.post-details .article-content .content .content-grid .info-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.post-details .article-content .content .content-grid .info-card:hover {
    transform: translateY(-5px);
}

.post-details .article-content .content .content-grid .info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.post-details .article-content .content .content-grid .info-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-details .article-content .content .content-grid .info-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.post-details .article-content .content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.post-details .article-content .content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-family: serif;
    line-height: 1;
}

.post-details .article-content .content blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0 0 1rem;
    position: relative;
}

.post-details .article-content .content blockquote cite {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    display: block;
}

.post-details .article-content .meta-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    display: grid;
    gap: 2rem;
}

.post-details .article-content .meta-bottom h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.post-details .article-content .meta-bottom .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-details .article-content .meta-bottom .tags .tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .tags .tag:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.post-details .article-content .meta-bottom .social-links {
    display: flex;
    gap: 1rem;
}

.post-details .article-content .meta-bottom .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.post-details .article-content .meta-bottom .social-links a i {
    font-size: 1.2rem;
}