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

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

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

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

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

    /* 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: #1e2734;

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

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

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

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

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

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

.dark-background {
    --background-color: #322f2d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4a4643;
    --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);
    font-size: 0.92rem;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.1rem;
    font-weight: 600;

    /* color: var(--heading-color) */
    /* font-family: var(--heading-font) */
}

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

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

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

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

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

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

/* 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: 100%;
    top: 100%;
    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: #f3f3f3;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

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

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

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

@media (max-width: 575px) {
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

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

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

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

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

.header .branding {
    min-height: 58px;
    padding: 10px 0;
}

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

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

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

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

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

/* Index Page Header
------------------------------ */
.index-page .header {
    --background-color: rgba(0, 0, 0, 0.1);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------ */
.index-page.scrolled .header {
    --background-color: #f3f3f3;
    --default-color: #444444;
    --heading-color: #282828;
    --nav-color: #5b5b5b;
}

/* --------------------------------------------------------------
# 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: color-mix(in srgb, var(--nav-color), transparent 30%);
        font-size: 14px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: right;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

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

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

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

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-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: 0;
        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: 14px;
        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: 35px;
        line-height: 0;
        margin-right: 11px;
        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: 0;
        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: 12px 24px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 18px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        transition: 0.3s;
        color: var(--nav-dropdown-color);
    }

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

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

    .navmenu .active i,
    .navmenu .active:focus i {
        color: var(--nav-dropdown-hover-color);
        transform: rotate(180deg);
    }

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Global Footer
-------------------------------------------------------------- */
.footer {
    --background-color: #1e2734;
    --accent-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    padding: 60px 0 0 0;
    font-size: 13px;
}

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

.footer h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.footer .footer-info p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer .social-links {
    display: flex;
    margin-top: 15px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--background-color);
    background-color: var(--accent-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
}

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

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

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

.footer .footer-links li i {
    font-size: 13px;
    color: var(--accent-color);
    margin-right: 8px;
    line-height: 0;
}

.footer .footer-links li a {
    color: var(--default-color);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

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

.footer .footer-contact .contact-info {
    margin-top: 15px;
}

.footer .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer .footer-contact .contact-item i {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--accent-color);
    margin-top: 4px;
    margin-right: 15px;
    line-height: 1;
}

.footer .footer-contact .contact-item p {
    margin: 0;
    line-height: 1.5;
}

.footer .footer-newsletter p {
    margin-bottom: 15px;
}

.footer .footer-newsletter form {
    position: relative;
    margin-bottom: 30px;
}

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

.footer .footer-newsletter form input[type=email]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
    outline: none;
}

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

.footer .footer-newsletter form button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(95, 171, 197);
    color: var(--contrast-color);
    border: 0;
    padding: 10px 15px;
    height: 44px;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

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

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

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

.footer .copyright .sitename {
    color: var(--accent-color);
}

.footer .credits {
    padding-top: 5px;
    font-size: 9px;
}

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

.footer .credits a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 992px) {
    .footer .footer-info,
    .footer .footer-links,
    .footer .footer-contact,
    .footer .footer-newsletter {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer h4::after {
        left: 0;
        transform: none;
    }

    .footer .footer-links li {
        justify-content: left;
    }

    .footer .footer-contact .contact-item {
        justify-content: left;
        text-align: left;
    }

    .footer .footer-contact .contact-item i {
        margin-right: 10px;
    }

    .footer .footer-contact .contact-item p {
        text-align: center;
    }

    .footer .opening-hours h5 {
        justify-content: left;
    }

    .footer .opening-hours p {
        text-align: left;
    }

    .footer .footer-info p {
        text-align: center;
    }

    .footer .social-links {
        justify-content: left;
    }
}

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

/* --------------------------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------------------------- */
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 144px 0 82px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    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 50%);
}

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

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 57px;
    }
}

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

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.section-title p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 1%);
    max-width: 100%;

    /* text-wrap: balance */
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    margin-left: 0;
}

/* --------------------------------------------------------------
# Hero 2 Section
-------------------------------------------------------------- */
.hero-2 {
    padding: 0;
    background-color: #0a0a0a;
}

.hero-2 .cinema-slider {
    position: relative;
}

.hero-2 .swiper {
    overflow: hidden;
}

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

.hero-2 .cinema-frame {
    position: relative;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
}

.hero-2 .cinema-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-2 .swiper-slide-active .cinema-frame img {
    transform: scale(1.08);
}

.hero-2 .frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-2 .frame-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-2 .content-inner {
    max-width: 600px;
}

.hero-2 .accent-line {
    width: 56px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 28px;
    transition: width 0.6s ease;
}

.hero-2 .swiper-slide-active .accent-line {
    width: 80px;
}

.hero-2 .tag-label {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.7s ease 0.2s;
}

.hero-2 .swiper-slide-active .tag-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-2 .content-inner h3 {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.35s;
}

.hero-2 .swiper-slide-active .content-inner h3 {
    opacity: 1;
    transform: translateY(0);
}

.hero-2 .content-inner p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: color-mix(in srgb, #ffffff 82%, transparent);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.5s;
}

.hero-2 .swiper-slide-active .content-inner p {
    opacity: 1;
    transform: translateY(0);
}

.hero-2 .refined-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hero-2 .refined-btn i {
    font-size: 14px;
    transition: transform 0.5s ease;
}

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

.hero-2 .refined-btn:hover i {
    transform: translateX(5px);
}

.hero-2 .swiper-slide-active .refined-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease 0.65s;
}

.hero-2 .swiper-slide-active .refined-btn:hover {
    transition: all 0.5s ease;
}

.hero-2 .slider-controls {
    position: absolute;
    bottom: 48px;
    right: 8%;
    z-index: 3;
}

.hero-2 .controls-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-2 .swiper-pagination {
    position: static;
    width: auto;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero-2 .swiper-pagination .swiper-pagination-current {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
}

.hero-2 .nav-arrows {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-2 .swiper-button-prev,
.hero-2 .swiper-button-next {
    position: static;
    width: 52px;
    height: 52px;
    margin: 0;
    border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
    border-radius: 0;
    background: transparent;
    transition: all 0.5s ease;
}

.hero-2 .swiper-button-prev::after,
.hero-2 .swiper-button-next::after {
    font-size: 16px;
    font-weight: 300;
    color: color-mix(in srgb, #ffffff 70%, transparent);
    transition: color 0.5s ease;
}

.hero-2 .swiper-button-prev:hover,
.hero-2 .swiper-button-next:hover {
    background: color-mix(in srgb, #ffffff 10%, transparent);
    border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero-2 .swiper-button-prev:hover::after,
.hero-2 .swiper-button-next:hover::after {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .hero-2 .content-inner h3 {
        font-size: 42px;
    }

    .hero-2 .content-inner {
        max-width: 520px;
    }
}

@media (max-width: 992px) {
    .hero-2 .cinema-frame {
        min-height: 480px;
    }

    .hero-2 .content-inner h3 {
        font-size: 36px;
    }

    .hero-2 .content-inner p {
        font-size: 16px;
    }

    .hero-2 .frame-content {
        padding: 0 6%;
    }

    .hero-2 .slider-controls {
        right: 6%;
        bottom: 36px;
    }
}

@media (max-width: 768px) {
    .hero-2 .cinema-frame {
        min-height: 520px;
    }

    .hero-2 .frame-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
    }

    .hero-2 .frame-content {
        align-items: flex-end;
        padding: 0 24px 120px;
    }

    .hero-2 .content-inner {
        max-width: 100%;
    }

    .hero-2 .content-inner h3 {
        font-size: 30px;
    }

    .hero-2 .content-inner p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-2 .refined-btn {
        padding: 14px 32px;
        font-size: 12px;
    }

    .hero-2 .slider-controls {
        bottom: 24px;
        right: 24px;
    }

    .hero-2 .controls-inner {
        gap: 20px;
    }

    .hero-2 .swiper-button-prev,
    .hero-2 .swiper-button-next {
        width: 44px;
        height: 44px;
    }

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

    .hero-2 .swiper-pagination .swiper-pagination-current {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .hero-2 .cinema-frame {
        min-height: 460px;
    }

    .hero-2 .content-inner h3 {
        font-size: 26px;
    }

    .hero-2 .accent-line {
        width: 40px;
        margin-bottom: 20px;
    }

    .hero-2 .swiper-slide-active .accent-line {
        width: 56px;
    }

    .hero-2 .tag-label {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero-2 .frame-content {
        padding: 0 20px 100px;
    }

    .hero-2 .slider-controls {
        right: 20px;
        bottom: 20px;
    }

    .hero-2 .controls-inner {
        gap: 16px;
    }

    .hero-2 .swiper-button-prev,
    .hero-2 .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

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

.about-2 .intro-text {
    max-width: 90%;
    margin: 0 auto 20px;
}

.about-2 .intro-text p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 0;
}

.about-2 .visual-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-2 .visual-block img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.about-2 .visual-block .stat-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    background: linear-gradient(to top, color-mix(in srgb, #000, transparent 30%) 0%, transparent 60%);
    border-radius: 16px;
}

.about-2 .visual-block .stat-circle {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about-2 .visual-block .stat-circle .stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.about-2 .visual-block .stat-circle .stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
    padding: 0 12px;
    line-height: 1.3;
}

.about-2 .highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.about-2 .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    background: var(--surface-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    outline: 1px solid #cccccc;
}

.about-2 .highlight-item .highlight-icon-wrap {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease;
}

.about-2 .highlight-item .highlight-icon-wrap i {
    font-size: 22px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.about-2 .highlight-item .highlight-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.about-2 .highlight-item .highlight-content p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: color-mix(in srgb, var(--default-color), transparent 6%);
    margin-bottom: 0;
}

.about-2 .highlight-item:hover {
    border-bottom-color: var(--accent-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about-2 .highlight-item:hover .highlight-icon-wrap {
    background: var(--accent-color);
}

.about-2 .highlight-item:hover .highlight-icon-wrap i {
    color: var(--contrast-color);
}

.about-2 .action-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about-2 .btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.about-2 .btn-browse i {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.about-2 .btn-browse:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, black);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.about-2 .btn-browse:hover i {
    transform: scale(1.15);
}

.about-2 .assurance-tags {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-2 .assurance-tags .assurance-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-2 .assurance-tags .assurance-tag i {
    font-size: 15px;
    color: #16a34a;
}

@media (max-width: 992px) {
    .about-2 .visual-block {
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .about-2 .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-2 .action-bar {
        justify-content: center;
    }

    .about-2 .assurance-tags {
        justify-content: center;
    }
}

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

    .about-2 .intro-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-2 .action-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-2 .assurance-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-2 .stat-circle {
        width: 110px;
        height: 110px;
    }

    .about-2 .stat-circle .stat-value {
        font-size: 28px;
    }

    .about-2 .stat-circle .stat-label {
        font-size: 9px;
    }
}

/* --------------------------------------------------------------
# Clients Section
-------------------------------------------------------------- */
.clients {
    padding-top: 3px;
    padding-bottom: 0px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

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

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-pagination {
    margin-top: 11px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/* --------------------------------------------------------------
# Portfolio Section
-------------------------------------------------------------- */
.portfolio {
    padding-top: 3px;
    padding-bottom: 0px;
}

.portfolio .filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}

.portfolio .filter-bar li {
    padding: 8px 20px;
    font-size: 0.775rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.3s ease;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
}

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

.portfolio .filter-bar li.filter-active {
    color: var(--default-color);
    border-bottom-color: var(--accent-color);
}

.portfolio .work-entry {
    margin-bottom: 16px;
}

.portfolio .work-entry .work-thumb {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 2px;
}

.portfolio .work-entry .work-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    color: var(--default-color);
    border-radius: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a:hover {
    color: var(--accent-color);
}

.portfolio .work-entry .work-thumb:hover img {
    opacity: 0.85;
}

.portfolio .work-entry .work-thumb:hover .work-actions {
    opacity: 1;
}

.portfolio .work-entry .work-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 8px;
}

.portfolio .work-entry .work-meta .work-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio .work-entry .work-meta .work-divider {
    width: 12px;
    height: 1px;
    background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .work-entry .work-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio .work-entry .work-title a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.portfolio .work-entry .work-title a:hover {
    color: var(--accent-color);
}

.portfolio .work-entry .work-excerpt {
    font-size: 0.92rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    margin-bottom: 0;
}

.portfolio .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--default-color);
    padding: 12px 0;
    border-bottom: 2px solid var(--default-color);
    transition: color 0.3s ease, border-color 0.3s ease;
    letter-spacing: 0.02em;
}

.portfolio .view-all-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.portfolio .view-all-link i {
    transition: transform 0.3s ease;
}

.portfolio .view-all-link:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------
# Stats Section
-------------------------------------------------------------- */
.stats {
    padding-top: 5px;
    --tile-radius: 10px;
    --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 9px;
}

.stats .stats-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: var(--surface-color);
    border: var(--tile-border);
    border-radius: 12px;
    padding: 12px;
}

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

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

.stats .stat-tile {
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
    border: var(--tile-border);
    border-radius: var(--tile-radius);
    padding: 11px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 122px;
    box-shadow: var(--tile-shadow);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
    transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
    font-size: 24px;
    color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
    display: block;
    margin-top: 2px;
    color: color-mix(in srgb, var(--default-color), transparent 11%);
    font-size: 0.82rem;
    line-height: 1.4;
}

.stats .stat-tile .tile-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
    display: inline-block;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1;
    font-size: 34px;
}

@media (max-width: 576px) {
    .stats .stat-tile .tile-metric .metric-number {
        font-size: 32px;
    }
}

.stats .stat-tile .tile-metric .metric-suffix {
    color: color-mix(in srgb, var(--default-color), transparent 0%);
    font-size: 22px;
    font-weight: 700;
}

.stats .stat-tile:nth-child(1) {
    border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(2) {
    border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(3) {
    border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(4) {
    border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .legend-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 11px;
    padding: 10px 12px;
    border: 1px dashed color-mix(in srgb, var(--default-color), transparent 10%);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
    .stats .legend-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.stats .legend-row .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stats .legend-row .legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
    background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
    background: color-mix(in srgb, var(--default-color), transparent 22%);
}

.stats .legend-row .legend-item .text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* --------------------------------------------------------------
# Portfolio 3 Section
-------------------------------------------------------------- */
.portfolio-3 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.portfolio-3 .filter-bar {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
    .portfolio-3 .filter-bar {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }
}

.portfolio-3 .showcase-card {
    background-color: var(--surface-color);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-3 .showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 82%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.portfolio-3 .showcase-card:hover .card-image img {
    transform: scale(1);
}

.portfolio-3 .showcase-card:hover .card-image .image-actions {
    opacity: 1;
    visibility: visible;
}

.portfolio-3 .showcase-card .card-image {
    position: relative;
    overflow: hidden;
}

.portfolio-3 .showcase-card .card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .portfolio-3 .showcase-card .card-image img {
        height: 300px;
    }
}

.portfolio-3 .showcase-card .card-image .image-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--default-color), transparent 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.portfolio-3 .showcase-card .card-image .image-actions .action-btn {
    width: 58px;
    height: 58px;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.portfolio-3 .showcase-card .card-image .image-actions .action-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(0);
}

.portfolio-3 .showcase-card .card-image .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 50px;
    z-index: 2;
}

.portfolio-3 .showcase-card .card-body {
    padding: 11px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-3 .showcase-card .card-body .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.portfolio-3 .showcase-card .card-body .card-meta .meta-client {
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--default-color), transparent 1%);
    display: flex;
    align-items: center;
    gap: 7px;
}

.portfolio-3 .showcase-card .card-body .card-meta .meta-client i {
    font-size: 1.1em;
}

.portfolio-3 .showcase-card .card-body .card-meta .meta-date {
    font-size: 0.91rem;
    color: color-mix(in srgb, var(--default-color), transparent 11%);
    font-weight: 400;
}

.portfolio-3 .showcase-card .card-body .card-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 11px;
    color: var(--heading-color);
    line-height: 1.35;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .portfolio-3 .showcase-card .card-body .card-title {
        font-size: 0.82rem;
    }
}

.portfolio-3 .showcase-card .card-body .card-text {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--default-color), transparent 11%);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
    text-transform: none;
}

.portfolio-3 .showcase-card .card-body .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.portfolio-3 .showcase-card .card-body .card-tags .tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.portfolio-3 .cta-banner {
    margin-top: 80px;
    padding: 50px 45px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
    .portfolio-3 .cta-banner {
        padding: 30px 30px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .portfolio-3 .cta-banner {
        padding: 30px 24px;
        margin-top: 30px;
    }
}

.portfolio-3 .cta-banner .banner-content h4 {
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .portfolio-3 .cta-banner .banner-content h4 {
        font-size: 1.15rem;
    }
}

.portfolio-3 .cta-banner .banner-content p {
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .portfolio-3 .cta-banner .banner-content p {
        margin-bottom: 30px;
    }
}

.portfolio-3 .cta-banner .banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

@media (max-width: 992px) {
    .portfolio-3 .cta-banner .banner-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .portfolio-3 .cta-banner .banner-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.portfolio-3 .cta-banner .banner-actions .btn-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.portfolio-3 .cta-banner .banner-actions .btn-start i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.portfolio-3 .cta-banner .banner-actions .btn-start:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 12%);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.portfolio-3 .cta-banner .banner-actions .btn-start:hover i {
    transform: translateX(3px);
}

.portfolio-3 .cta-banner .banner-actions .btn-browse {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.portfolio-3 .cta-banner .banner-actions .btn-browse::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.portfolio-3 .cta-banner .banner-actions .btn-browse:hover {
    color: color-mix(in srgb, var(--accent-color), black 10%);
}

.portfolio-3 .cta-banner .banner-actions .btn-browse:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --------------------------------------------------------------
# Testimonials Section
-------------------------------------------------------------- */
.testimonials {
    padding-top: 22px;
    position: relative;
    padding-bottom: 22px;
}

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

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 18px;
    margin: 0 0 15px 0;

    /* color: color-mix(in srgb, var(--default-color), transparent 40%) */
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    font-size: 14px;
    line-height: 0;
}

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 11px auto;
    font-size: 0.92rem;
}

.testimonials .swiper-wrapper {
    height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

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

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

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

.services-3 .intro-block {
    margin-bottom: 16px;
}

.services-3 .intro-block .tag-badge {
    display: inline-flex;
    align-items: left;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-3 .intro-block .block-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--heading-color);
    margin-bottom: 6px;
}

@media (max-width: 1290pxpx) {
    .services-3 .intro-block .block-heading {
        font-size: 28px;
    }
}

.services-3 .intro-block .block-text {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 3%);
    max-width: 1290px;
    margin: 0 auto 22px;
}

.services-3 .intro-block .action-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.services-3 .intro-block .btn-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    background: var(--heading-color);
    color: var(--contrast-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.services-3 .intro-block .btn-primary-action:hover {
    background: color-mix(in srgb, var(--heading-color), transparent 10%);
    color: var(--contrast-color);
}

.services-3 .intro-block .btn-primary-action:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

.services-3 .intro-block .btn-ghost-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    background: transparent;
    color: var(--default-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 6px;
}

.services-3 .intro-block .btn-ghost-action:hover {
    background: var(--surface-color);
    color: var(--accent-color);
}

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

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

.services-3 .capability-card .card-icon {
    margin-bottom: 16px;
}

.services-3 .capability-card .card-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.services-3 .capability-card:hover .card-icon i {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services-3 .capability-card .card-body-content {
    flex: 1;
}

.services-3 .capability-card .card-body-content .card-heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.services-3 .capability-card .card-body-content .card-heading a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.services-3 .capability-card .card-body-content .card-heading a:hover {
    color: var(--accent-color);
}

.services-3 .capability-card .card-body-content .card-text {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 11%);
    margin-bottom: 0;
}

.services-3 .capability-card .card-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-3 .capability-card .card-foot .card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--default-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.services-3 .capability-card .card-foot .card-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.services-3 .capability-card .card-foot .card-link:hover {
    color: var(--accent-color);
}

.services-3 .capability-card .card-foot .card-link:hover i {
    transform: translateX(3px);
}

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

/* --------------------------------------------------------------
# About 8 Section
-------------------------------------------------------------- */
.about-8 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-8 .content ul {
    list-style: none;
    padding: 0;
}

.about-8 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# About 6 Section
-------------------------------------------------------------- */
.about-6 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-6 .content ul {
    list-style: none;
    padding: 0;
}

.about-6 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# Cards 1 Section
-------------------------------------------------------------- */
.cards-1 .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    padding: 30px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}

.cards-1 .card img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}

.cards-1 .card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}

.cards-1 .card:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

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

/* --------------------------------------------------------------
# Certifications Section
-------------------------------------------------------------- */
.certifications {
    padding-top: 12px;
    padding-bottom: 60px;
}

.certifications .badge-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.certifications .badge-card img {
    max-width: 120px;
    margin-bottom: 16px;
}

.certifications .badge-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.certifications .badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* --------------------------------------------------------------
# Features Section
-------------------------------------------------------------- */
.features .icon-box {
    display: flex;
}

.features .icon-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.features .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: var(--accent-color);
    margin-right: 15px;
}

.features .icon-box p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 0;
}

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

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

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

.cards .card h3 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    padding: 0 20px;
}

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

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

.cards .card .stars {
    padding: 0 20px;
    margin-bottom: 5px;
}

.cards .card .stars i {
    color: #ffffff;
}

.cards .card p {
    padding: 0 20px;
    margin-bottom: 11px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    font-style: italic;
    font-size: 14px;
}

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

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

.services-2 .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.services-2 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.services-2 .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services-2 .service-item .title a {
    color: var(--heading-color);
}

.services-2 .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

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

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

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

.services-4 .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.services-4 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.services-4 .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services-4 .service-item .title a {
    color: var(--heading-color);
}

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

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

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

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

.services-5 .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.services-5 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.services-5 .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services-5 .service-item .title a {
    color: var(--heading-color);
}

.services-5 .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

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

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

/* --------------------------------------------------------------
# About Section
-------------------------------------------------------------- */
.about .content h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# About 3 Section
-------------------------------------------------------------- */
.about-3 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-3 .content ul {
    list-style: none;
    padding: 0;
}

.about-3 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# About 4 Section
-------------------------------------------------------------- */
.about-4 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-4 .content ul {
    list-style: none;
    padding: 0;
}

.about-4 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

/* --------------------------------------------------------------
# About 7 Section
-------------------------------------------------------------- */
.about-7 .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-7 .content ul {
    list-style: none;
    padding: 0;
}

.about-7 .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

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

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

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

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

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

.post-list .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 .post-item .post-content {
    padding: 30px;
}

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

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

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

.post-list .post-item hr {
    color: color-mix(in srgb, var(--default-color), transparent 80%);
    margin: 20px 0;
}

.post-list .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 .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

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

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

/* --------------------------------------------------------------
# Projects Section
-------------------------------------------------------------- */
.projects .project-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
}

.projects .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-card:hover .project-overlay {
    opacity: 1;
}

.projects .project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.projects .project-image:hover img {
    transform: scale(1.05);
}

.projects .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--default-color), transparent 10%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.projects .project-status {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects .project-status.completed {
    background: color-mix(in srgb, #28a745, transparent 20%);
    color: #ffffff;
}

.projects .project-status.in-progress {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: #ffffff;
}

.projects .project-status.planning {
    background: color-mix(in srgb, #ffc107, transparent 20%);
    color: #ffffff;
}

.projects .project-actions {
    align-self: center;
}

.projects .btn-project {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.projects .btn-project:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.projects .project-info {
    padding: 25px;
}

.projects .project-category {
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.projects .project-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
    line-height: 1.3;
}

.projects .project-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.projects .project-meta {
    display: flex;
    gap: 20px;
}

.projects .project-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.projects .project-meta span i {
    font-size: 14px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .projects .project-meta {
        flex-direction: column;
        gap: 8px;
    }

    .projects .project-title {
        font-size: 18px;
    }

    .projects .project-image {
        height: 200px;
    }
}

/* --------------------------------------------------------------
# Features 2 Section
-------------------------------------------------------------- */
.features-2 {
    padding: 0;
}

.features-2 .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-2 .content {
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/uploads/DJI_20251205161059_0233_D.webp") center center;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 768px) {
    .features-2 .content {
        padding: 80px;
    }
}

.features-2 .content h3 {
    font-weight: 600;
    font-size: 32px;
}

.features-2 .content ul {
    list-style: none;
    padding: 0;
}

.features-2 .content ul li {
    padding-bottom: 10px;
}

.features-2 .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features-2 .content p:last-child {
    margin-bottom: 0;
}

.features-2 .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-2 .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.features-2 .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    padding-right: 19px;
}

.features-2 .content .read-more:hover i {
    margin-left: 10px;
}

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

/* --------------------------------------------------------------
# Slider Section
-------------------------------------------------------------- */
.slider {
    overflow: visible;
    margin-bottom: 200px;
}

.slider .section-title {
    text-align: left;
}

.slider .section-title h2 {
    color: color-mix(in srgb, var(--contrast-color), transparent 50%);
    text-transform: uppercase;
    font-size: 20px;
}

.slider .section-title p {
    color: var(--contrast-color);
}

.slider .services-carousel-wrap {
    position: relative;
    margin-bottom: -200px;
}

.slider .swiper-wrapper {
    height: auto;
}

.slider .service-item {
    position: relative;
    overflow: hidden;
}

.slider .service-item:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.3s all ease;
}

.slider .service-item img {
    transition: 0.5s all ease;
    transform: scale(1);
}

.slider .service-item .service-item-contents {
    z-index: 9;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transition: 0.3s all ease;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.slider .service-item .service-item-contents .service-item-category {
    color: var(--accent-color);
    text-transform: uppercase;
}

.slider .service-item .service-item-contents .service-item-title {
    color: var(--contrast-color);
    margin-bottom: 0;
}

.slider .service-item:hover:before {
    opacity: 1;
    visibility: visible;
}

.slider .service-item:hover .service-item-contents {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

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

.slider .navigation-prev,
.slider .navigation-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 46px;
    height: 46px;
    background: var(--contrast-color);
    background-color: none;
    border: none;
    transition: 0.3s all ease;
}

.slider .navigation-prev i,
.slider .navigation-next i {
    font-size: 2rem;
}

.slider .navigation-prev:hover,
.slider .navigation-next:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.slider .navigation-prev {
    left: 10px;
}

.slider .navigation-next {
    right: 10px;
}

.slider .swiper {
    padding-bottom: 50px;
}

.slider .swiper-pagination {
    bottom: 0px;
}

.slider .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 20px;
    height: 4px;
    background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
    opacity: 1;
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}

/* --------------------------------------------------------------
# Appointment Section
-------------------------------------------------------------- */
.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    color: var(--default-color);
    background-color: transparent;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
    background: var(--accent-color);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/* --------------------------------------------------------------
# Contact 2 Section
-------------------------------------------------------------- */
.contact-2 .contact-info-section {
    height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Contact 3 Section
-------------------------------------------------------------- */
.contact-3 .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-3 .contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-3 .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-3 .contact-info-item .info-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.contact-3 .contact-info-item .info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-3 .contact-info-item .info-content p {
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
}

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

.contact-3 .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-3 .contact-form-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-3 .contact-form-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-3 .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-3 .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-3 .contact-form-card .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-3 .contact-form-card textarea.form-control {
    min-height: 150px;
    margin-bottom: 25px;
}

.contact-3 .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-3 .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-3 .map-container {
    position: relative;
    margin-top: 50px;
    padding: 0;
}

.contact-3 .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-3 .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-3 .contact-form-card {
        padding: 30px;
    }

    .contact-3 .map-container {
        margin-top: 40px;
    }

    .contact-3 .map-container .map-overlay {
        top: -25px;
        height: 50px;
    }

    .contact-3 .map-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-3 .contact-info-wrapper {
        gap: 25px;
    }

    .contact-3 .contact-info-item {
        gap: 15px;
    }

    .contact-3 .contact-info-item .info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-3 .contact-form-card {
        padding: 25px;
    }

    .contact-3 .contact-form-card h2 {
        font-size: 24px;
    }

    .contact-3 .map-container {
        margin-top: 30px;
    }

    .contact-3 .map-container .map-overlay {
        top: -20px;
        height: 40px;
    }

    .contact-3 .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-3 .contact-form-card {
        padding: 20px;
    }

    .contact-3 .map-container {
        margin-top: 25px;
    }

    .contact-3 .map-container .map-overlay {
        top: -15px;
        height: 30px;
    }

    .contact-3 .map-container iframe {
        height: 350px;
        border-radius: 8px;
    }
}

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

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

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

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

.portfolio-details-2 .portfolio-info {
    background-color: var(--surface-color);
    padding: 11px;
    box-shadow: 0px 0 22px rgba(0,0,0,0.1);
    left: 4em;
}

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

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

.portfolio-details-2 .portfolio-info ul li+li {
    margin-top: 10px;
    line-height: 2;
}

.portfolio-details-2 .portfolio-description {
    padding-top: 11px;
}

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

.portfolio-details-2 .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 1%);
}

/* --------------------------------------------------------------
# About 5 Section
-------------------------------------------------------------- */
.about-5 .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about-5 .content ul {
    list-style: none;
    padding: 0;
}

.about-5 .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.about-5 .content ul i {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
}

.about-5 .content ul h5 {
    font-size: 16px;
    font-weight: 700;
}

.about-5 .content ul p {
    font-size: 0.92rem;
}

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

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

/* --------------------------------------------------------------
# Service Details Section
-------------------------------------------------------------- */
.service-details .hero-image img {
    width: 100%;
    display: block;
}

.service-details .intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.service-details .intro-content .lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 16px;
}

.service-details .intro-content p {
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.service-details .overview-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .overview-details .detail-row:last-child {
    border-bottom: none;
}

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

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

.service-details .section-label {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.service-details .capabilities-section {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .capabilities-section .capability-card {
    padding: 40px 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: border-color 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-details .capabilities-section .capability-card:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .capabilities-section .capability-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.service-details .capabilities-section .capability-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.service-details .capabilities-section .capability-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.service-details .workflow-section {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .workflow-section .workflow-step {
    padding: 40px 32px;
    height: 100%;
}

.service-details .workflow-section .workflow-step .step-num {
    font-size: 2rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    display: block;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.service-details .workflow-section .workflow-step h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
}

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

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

.service-details .testimonial-block {
    padding: 48px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .testimonial-block i.bi-quote {
    font-size: 2rem;
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    display: block;
    margin-bottom: 20px;
}

.service-details .testimonial-block p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--default-color);
}

.service-details .testimonial-block .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-details .testimonial-block .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.service-details .testimonial-block .author h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--heading-color);
}

.service-details .testimonial-block .author span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block {
    padding: 48px;
    text-align: center;
}

.service-details .cta-block h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.service-details .cta-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 32px;
}

.service-details .cta-block .cta-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 32px;
}

.service-details .cta-block .cta-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.service-details .cta-block .cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.service-details .cta-block .cta-contacts span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block .cta-contacts span i {
    color: var(--accent-color);
    margin-right: 8px;
}

@media (max-width: 992px) {
    .service-details .intro-content h2 {
        font-size: 1.8rem;
    }

    .service-details .capabilities-section,
    .service-details .workflow-section {
        padding: 60px 0;
    }

    .service-details .bottom-section {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .service-details .intro-content {
        margin-top: 32px;
    }

    .service-details .intro-content h2 {
        font-size: 1.6rem;
    }

    .service-details .section-label {
        margin-bottom: 32px;
    }

    .service-details .capabilities-section,
    .service-details .workflow-section {
        padding: 48px 0;
    }

    .service-details .testimonial-block,
    .service-details .cta-block {
        padding: 32px;
    }
}

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

/* --------------------------------------------------------------
# Services Section
-------------------------------------------------------------- */
.services {
    --border-soft: color-mix(in srgb, var(--default-color) 12%, transparent);
    --border-strong: color-mix(in srgb, var(--default-color) 22%, transparent);
    --muted: color-mix(in srgb, var(--default-color) 65%, transparent);
    --shadow-sm: 0 1px 2px color-mix(in srgb, var(--default-color) 6%, transparent);
    --shadow-md: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent);
}

.services .services-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-soft);
}

.services .services-toolbar .label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.services .services-toolbar .toolbar-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .services .services-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.services .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--default-color) 6%, transparent);
    color: var(--default-color);
    border: 1px solid var(--border-soft);
    line-height: 1.4;
}

.services .badge.badge-accent {
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.services .badge.badge-success {
    background: color-mix(in srgb, #16a34a 10%, transparent);
    color: #16a34a;
    border-color: color-mix(in srgb, #16a34a 25%, transparent);
}

.services .badge.badge-success .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    animation: dotPulse 2s infinite;
}

.services .badge.badge-outline {
    background: transparent;
    border-color: color-mix(in srgb, var(--contrast-color) 35%, transparent);
    color: var(--contrast-color);
}

.services .badge.badge-outline i {
    font-size: 13px;
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.services .services-grid {
    margin-bottom: 64px;
}

.services .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.services .service-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.services .service-card.featured {
    border-color: color-mix(in srgb, var(--accent-color) 50%, transparent);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-color) 20%, transparent), var(--shadow-md);
}

.services .service-card.emergency {
    border-left: 3px solid #dc2626;
}

.services .card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.services .card-head .icon-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    margin-right: 4px;
}

.services .card-head .icon-wrap i {
    font-size: 20px;
}

.services .card-head .pin {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .card-head .pin.pin-live {
    background: color-mix(in srgb, #dc2626 10%, transparent);
    color: #dc2626;
    border: 1px solid color-mix(in srgb, #dc2626 25%, transparent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.services .card-head .pin.pin-live .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dc2626;
    animation: dotPulse 2s infinite;
}

.services .card-content {
    flex: 1;
}

.services .card-content .card-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--heading-color);
}

.services .card-content .card-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 16px;
}

.services .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--default-color);
}

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

.services .card-foot {
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    margin-top: auto;
}

.services .btn-primary,
.services .btn-secondary,
.services .btn-ghost,
.services .btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.services .btn-primary i,
.services .btn-secondary i,
.services .btn-ghost i,
.services .btn-danger i {
    font-size: 14px;
}

.services .btn-primary:focus-visible,
.services .btn-secondary:focus-visible,
.services .btn-ghost:focus-visible,
.services .btn-danger:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.services .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 100%;
}

.services .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, #000);
    color: var(--contrast-color);
}

.services .btn-ghost {
    background: transparent;
    color: var(--default-color);
    border-color: var(--border-soft);
    width: 100%;
}

.services .btn-ghost:hover {
    background: color-mix(in srgb, var(--default-color) 4%, transparent);
    border-color: var(--border-strong);
    color: var(--accent-color);
}

.services .btn-danger {
    background: #dc2626;
    color: var(--contrast-color);
    width: 100%;
}

.services .btn-danger:hover {
    background: color-mix(in srgb, #dc2626 85%, #000);
    color: var(--contrast-color);
}

.services .services-stats {
    background: var(--surface-color);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 64px;
}

.services .services-stats .stat-cell {
    padding: 24px;
    border-right: 1px solid var(--border-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services .services-stats .stat-cell .stat-key {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.services .services-stats .stat-cell .stat-value {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--heading-color);
    line-height: 1;
}

.services .services-stats .stat-cell .stat-value .stat-suffix {
    font-size: 24px;
    color: var(--accent-color);
}

.services .services-stats .stat-cell .stat-meta {
    font-size: 13px;
    color: var(--muted);
}

.services .services-stats .col-lg-3:last-child .stat-cell,
.services .services-stats .col-md-6:nth-child(2) .stat-cell {
    border-right: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .services .services-stats .col-md-6:nth-child(odd) .stat-cell {
        border-right: 1px solid var(--border-soft);
    }

    .services .services-stats .col-md-6:nth-child(even) .stat-cell {
        border-right: none;
    }

    .services .services-stats .col-md-6:nth-child(-n+2) .stat-cell {
        border-bottom: 1px solid var(--border-soft);
    }
}

@media (max-width: 767px) {
    .services .services-stats .stat-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
    }

    .services .services-stats .col-md-6:last-child .stat-cell {
        border-bottom: none;
    }
}

.services .appointment-banner {
    background: var(--accent-color);
    border-radius: 8px;
    padding: 48px;
    color: var(--contrast-color);
    box-shadow: var(--shadow-md);
}

.services .appointment-banner .banner-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 32px;
}

@media (max-width: 992px) {
    .services .appointment-banner .banner-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

.services .appointment-banner .banner-meta h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--contrast-color);
    margin: 16px 0 8px;
    line-height: 1.2;
}

.services .appointment-banner .banner-meta p {
    font-size: 15px;
    line-height: 1.6;
    color: ffffff;
    margin: 0;
    max-width: 480px;
}

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

@media (max-width: 992px) {
    .services .appointment-banner .banner-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .services .appointment-banner .banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .services .appointment-banner .banner-actions .btn-primary,
    .services .appointment-banner .banner-actions .btn-secondary {
        width: 100%;
    }
}

.services .appointment-banner .banner-actions .btn-primary {
    background: var(--contrast-color);
    color: var(--accent-color);
    width: auto;
    padding: 0 20px;
}

.services .appointment-banner .banner-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--contrast-color) 88%, #000);
    color: var(--accent-color);
}

.services .appointment-banner .banner-actions .btn-secondary {
    background: transparent;
    color: var(--contrast-color);
    border-color: color-mix(in srgb, var(--contrast-color) 35%, transparent);
    padding: 0 20px;
}

.services .appointment-banner .banner-actions .btn-secondary:hover {
    background: color-mix(in srgb, var(--contrast-color) 12%, transparent);
    border-color: var(--contrast-color);
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .services .appointment-banner {
        padding: 32px 24px;
    }

    .services .appointment-banner .banner-meta h3 {
        font-size: 24px;
    }
}

/* --------------------------------------------------------------
# About Me 2 Section
-------------------------------------------------------------- */
.about-me-2 .about-img {
    position: relative;
}

.about-me-2 .about-img .img-wrapper {
    position: relative;
    padding: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 15px;
}

.about-me-2 .about-img .img-wrapper img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-me-2 .about-img .img-wrapper img:hover {
    transform: scale(1.02);
}

.about-me-2 .content .section-header {
    margin-bottom: 30px;
}

.about-me-2 .content .section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-me-2 .content .section-header p {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 500;
}

.about-me-2 .content .about-content .bio-text .lead {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 0;
}

.about-me-2 .content .about-content .bio-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
}

.about-me-2 .content .about-content .info-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-me-2 .content .about-content .info-list .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-me-2 .content .about-content .info-list .info-item:hover {
    transform: translateY(-3px);
}

.about-me-2 .content .about-content .info-list .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.about-me-2 .content .about-content .info-list .info-item h5 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
    color: var(--heading-color);
}

.about-me-2 .content .about-content .info-list .info-item p {
    margin: 0;
    font-size: 15px;
    color: var(--default-color);
}

.about-me-2 .content .about-content .social-links {
    text-align: center;
}

.about-me-2 .content .about-content .social-links .links-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-me-2 .content .about-content .social-links .links-wrapper a {
    color: var(--heading-color);
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-me-2 .content .about-content .social-links .links-wrapper a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .about-me-2 .about-img {
        margin-bottom: 30px;
    }

    .about-me-2 .content .about-content .info-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

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

    .about-me-2 .content .section-header p {
        font-size: 16px;
    }

    .about-me-2 .content .about-content .bio-text .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .about-me-2 .about-img .img-wrapper .social-links {
        padding: 12px 20px;
        gap: 12px;
    }

    .about-me-2 .about-img .img-wrapper .social-links a {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }

    .about-me-2 .content .about-content .info-list {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------
# Service Details 2 Section
-------------------------------------------------------------- */
.service-details-2 .badge-tag,
.service-details-2 .intro-label,
.service-details-2 .panel-label,
.service-details-2 .action-label,
.service-details-2 .feature-label,
.service-details-2 .overlay-label,
.service-details-2 .status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.service-details-2 .divider {
    height: 1px;
    background: color-mix(in srgb, var(--default-color) 10%, transparent);
    margin: 64px 0;
}

.service-details-2 .section-intro {
    margin-bottom: 32px;
}

.service-details-2 .section-intro .intro-label {
    margin-bottom: 12px;
}

.service-details-2 .section-intro h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
    max-width: 640px;
}

.service-details-2 .service-overview .overview-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) );
    border-radius: 8px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.service-details-2 .service-overview .overview-card:hover {
    border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-details-2 .service-overview .overview-card .overview-header {
    margin-bottom: 24px;
}

.service-details-2 .service-overview .overview-card .overview-header .badge-tag {
    margin-bottom: 16px;
}

.service-details-2 .service-overview .overview-card .overview-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .service-details-2 .service-overview .overview-card .overview-header h2 {
        font-size: 28px;
    }
}

.service-details-2 .service-overview .overview-card .overview-header .overview-tagline {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color) 95%, transparent);
    line-height: 1.6;
    margin: 0;
}

.service-details-2 .service-overview .overview-card .overview-body {
    flex: 1;
}

.service-details-2 .service-overview .overview-card .overview-body p {
    font-size: 14px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color) 80%, transparent);
    margin-bottom: 24px;
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid {
    padding: 24px;
    background: color-mix(in srgb, var(--default-color) 3%, transparent);
    border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
    border-radius: 8px;
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-label {
    display: block;
    margin-bottom: 16px;
    background: transparent;
    border: none;
    padding: 0;
    color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--heading-color);
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-item i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.service-details-2 .service-overview .overview-card .overview-footer {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

@media (max-width: 576px) {
    .service-details-2 .service-overview .overview-card .overview-footer {
        flex-direction: column;
    }
}

.service-details-2 .btn-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.service-details-2 .btn-primary-action:hover {
    background: color-mix(in srgb, var(--accent-color) 85%, black);
    color: var(--contrast-color);
}

.service-details-2 .btn-primary-action:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.service-details-2 .btn-primary-action.btn-block {
    width: 100%;
}

.service-details-2 .btn-ghost-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    background: transparent;
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-details-2 .btn-ghost-action:hover {
    background: color-mix(in srgb, var(--default-color) 5%, transparent);
    border-color: color-mix(in srgb, var(--default-color) 35%, transparent);
    color: var(--heading-color);
}

.service-details-2 .btn-ghost-action:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .media-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-details-2 .media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details-2 .media-card .media-overlay {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-details-2 .media-card .media-overlay .overlay-label {
    align-self: flex-start;
}

.service-details-2 .media-card .media-overlay .overlay-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

.service-details-2 .service-modules .module-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.service-details-2 .service-modules .module-card:hover {
    border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-details-2 .service-modules .module-card .module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-details-2 .service-modules .module-card .module-header .module-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-2 .service-modules .module-card .module-header .module-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.service-details-2 .service-modules .module-card h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.service-details-2 .service-modules .module-card p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    margin: 0;
    flex: 1;
}

.service-details-2 .service-modules .module-card .module-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .service-modules .module-card .module-footer .module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-details-2 .service-modules .module-card .module-footer .module-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.service-details-2 .service-modules .module-card .module-footer .module-link:hover {
    gap: 10px;
    color: color-mix(in srgb, var(--accent-color) 85%, black);
}

.service-details-2 .service-modules .module-card .module-footer .module-link:hover i {
    transform: translateX(2px);
}

.service-details-2 .booking-panel {
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-details-2 .booking-panel .panel-info {
    padding: 40px;
    height: 100%;
}

@media (max-width: 768px) {
    .service-details-2 .booking-panel .panel-info {
        padding: 24px;
    }
}

.service-details-2 .booking-panel .panel-info .panel-label {
    margin-bottom: 16px;
}

.service-details-2 .booking-panel .panel-info h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .service-details-2 .booking-panel .panel-info h3 {
        font-size: 24px;
    }
}

.service-details-2 .booking-panel .panel-info p {
    font-size: 14px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    margin-bottom: 32px;
}

.service-details-2 .booking-panel .panel-info .info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    border-radius: 6px;
    background: var(--background-color);
    transition: border-color 0.2s ease;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile:hover {
    border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile i {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.service-details-2 .booking-panel .panel-action {
    padding: 40px;
    height: 100%;
    background: color-mix(in srgb, var(--default-color) 3%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .service-details-2 .booking-panel .panel-action {
        border-left: none;
        border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    }
}

@media (max-width: 768px) {
    .service-details-2 .booking-panel .panel-action {
        padding: 24px;
    }
}

.service-details-2 .booking-panel .panel-action .action-label {
    align-self: flex-start;
    margin-bottom: 16px;
}

.service-details-2 .booking-panel .panel-action h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.service-details-2 .booking-panel .panel-action p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 65%, transparent);
    margin-bottom: 24px;
}

.service-details-2 .booking-panel .panel-action .action-divider {
    position: relative;
    text-align: center;
    margin: 16px 0;
}

.service-details-2 .booking-panel .panel-action .action-divider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-divider span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: color-mix(in srgb, var(--default-color) 3%, transparent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-call {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-details-2 .booking-panel .panel-action .action-call span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-call a {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
}

.service-details-2 .booking-panel .panel-action .action-call a:hover {
    color: color-mix(in srgb, var(--accent-color) 85%, black);
}

@media (max-width: 992px) {
    .service-details-2 .divider {
        margin: 48px 0;
    }

    .service-details-2 .media-card {
        min-height: 320px;
    }
}

/* --------------------------------------------------------------
# Service Details 3 Section
-------------------------------------------------------------- */
.service-details-3 .overview-content .service-label {
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline-block;
    margin-bottom: 15px;
}

.service-details-3 .overview-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--heading-color);
    margin-bottom: 25px;
}

.service-details-3 .overview-content p {
    font-size: 16px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    max-width: 500px;
    margin-bottom: 40px;
}

.service-details-3 .quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .quick-facts .fact {
    padding: 20px;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .quick-facts .fact .fact-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 5px;
}

.service-details-3 .quick-facts .fact .fact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.service-details-3 .overview-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.service-details-3 .overview-image:hover img {
    transform: scale(1.03);
}

.service-details-3 .body-text {
    padding: 60px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .body-text p {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.service-details-3 .features-block {
    padding: 80px 0 60px;
}

.service-details-3 .features-block h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--heading-color);
    margin-bottom: 50px;
}

.service-details-3 .features-block .feature-card {
    padding: 0 0 30px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    transition: all 0.3s ease-out;
}

.service-details-3 .features-block .feature-card i {
    font-size: 28px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}

.service-details-3 .features-block .feature-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-details-3 .features-block .feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.service-details-3 .features-block .feature-card:hover {
    transform: translateY(-4px);
}

.service-details-3 .process-block {
    padding: 0 0 80px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .process-block h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--heading-color);
    margin-bottom: 50px;
}

.service-details-3 .process-block .process-card {
    position: relative;
    padding-left: 0;
}

.service-details-3 .process-block .process-card .index {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: color-mix(in srgb, var(--accent-color), transparent 75%);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.service-details-3 .process-block .process-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-details-3 .process-block .process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.service-details-3 .quote-block {
    padding: 40px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    height: 100%;
}

.service-details-3 .quote-block i.bi-quote {
    font-size: 36px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.service-details-3 .quote-block p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-style: italic;
    margin-bottom: 30px;
}

.service-details-3 .quote-block .quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details-3 .quote-block .quote-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.service-details-3 .quote-block .quote-author h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 3px;
}

.service-details-3 .quote-block .quote-author span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details-3 .form-block {
    padding: 40px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .form-block h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 30px;
}

.service-details-3 .form-block .form-control {
    border-radius: 0;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: border-color 0.3s ease-out;
}

.service-details-3 .form-block input[type=text],
.service-details-3 .form-block input[type=email],
.service-details-3 .form-block input[type=tel],
.service-details-3 .form-block 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-3 .form-block input[type=text]:focus,
.service-details-3 .form-block input[type=email]:focus,
.service-details-3 .form-block input[type=tel]:focus,
.service-details-3 .form-block textarea:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

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

.service-details-3 .form-block .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    transition: all 0.3s ease-out;
}

.service-details-3 .form-block .btn-submit:hover {
    transform: translateY(-4px);
    background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
}

@media (max-width: 992px) {
    .service-details-3 .overview-content h2 {
        font-size: 34px;
    }

    .service-details-3 .features-block,
    .service-details-3 .process-block {
        padding: 60px 0 40px;
    }

    .service-details-3 .features-block h3,
    .service-details-3 .process-block h3 {
        font-size: 28px;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .service-details-3 .overview-content h2 {
        font-size: 28px;
    }

    .service-details-3 .overview-content p {
        max-width: 100%;
    }

    .service-details-3 .quick-facts {
        grid-template-columns: 1fr;
    }

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

    .service-details-3 .features-block,
    .service-details-3 .process-block {
        padding: 40px 0 30px;
    }

    .service-details-3 .features-block h3,
    .service-details-3 .process-block h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .service-details-3 .quote-block,
    .service-details-3 .form-block {
        padding: 25px;
    }

    .service-details-3 .form-block h3 {
        font-size: 24px;
    }

    .service-details-3 .process-block .process-card .index {
        font-size: 36px;
    }
}

/* --------------------------------------------------------------
# About Me Section
-------------------------------------------------------------- */
.about-me .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: 16px;
}

.about-me .intro-content .headline {
    font-family: var(--heading-font);
    font-weight: 300;
    line-height: 1.2;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 24px 0;
}

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

.about-me .intro-content p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.about-me .intro-content .cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
}

.about-me .intro-content .cta-group .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    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-me .intro-content .cta-group .btn-ghost:hover,
.about-me .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-me .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-me .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-me .intro-content .cta-group .link-underline:hover,
.about-me .intro-content .cta-group .link-underline:focus {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    outline: none;
}

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

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

.about-me .profile-figure .profile-photo {
    width: 88%;
    max-width: 440px;
    border-radius: 18px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.about-me .profile-figure .profile-caption {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.about-me .skill-item {
    padding: 24px;
    border-radius: 6px;
    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-me .skill-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: inline-block;
}

.about-me .skill-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
}

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

.about-me .skill-item:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.about-me .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-me .timeline-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 6px;
}

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

.about-me .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-me .personal-quote {
    padding: 24px 0;
}

.about-me .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-me .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-me .fact-pill i {
    color: var(--accent-color);
}

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

.about-me .fact-pill:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

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

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

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