/* --------------------------------------------------------------
# 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: "Raleway",  sans-serif;
    --nav-font: "Raleway",  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: #2f3138;

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

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

    /* 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: rgba(255, 255, 255, 0.65);

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

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

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

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

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

    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
    --background-color: #f2f2f3;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000820;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #001553;
    --contrast-color: #ffffff;
}

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

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

a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

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

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

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

/* Global Header on Scroll
------------------------------ */
.scrolled .header {
    --background-color: rgba(26, 39, 53, 0.86);
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Global Footer
-------------------------------------------------------------- */
.footer {
    color: var(--default-color);
    background: var(--background-color);
    font-size: 14px;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

.footer .footer-content p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

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

.footer .newsletter-form h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
    position: relative;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
    outline: none;
    box-shadow: none;
}

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

.footer .newsletter-form .btn-subscribe {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
}

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

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

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
    font-size: 13px;
    margin-top: 8px;
}

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

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

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

.footer .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer .footer-links ul li:hover {
    transform: translateX(5px);
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: 0.3s;
}

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

.footer .footer-links ul a i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--accent-color);
}

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

.footer .footer-contact .contact-item .contact-icon {
    width: 40px;
    height: 40px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
    color: var(--accent-color);
    font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
    line-height: 1.5;
}

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

.footer .social-links a {
    width: 42px;
    height: 42px;
    background-color: color-mix(in srgb, var(--default-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

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

.footer .social-links a i {
    font-size: 16px;
}

.footer .footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
    .footer .footer-bottom .copyright p {
        text-align: center;
        margin-bottom: 15px;
    }
}

.footer .footer-bottom .footer-bottom-links {
    text-align: right;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links {
        text-align: center;
        margin-bottom: 10px;
    }
}

.footer .footer-bottom .footer-bottom-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
    margin-left: 0;
}

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

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links a {
        margin: 0 10px;
    }
}

.footer .footer-bottom .credits {
    text-align: right;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
    .footer .footer-bottom .credits {
        text-align: center;
    }
}

.footer .footer-bottom .credits a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
    text-decoration: underline;
}

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

    .footer .footer-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer .footer-links,
    .footer .footer-contact {
        margin-bottom: 40px;
    }
}

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

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    border-color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------------------------- */
.page-title {
    --background-color: #000000;
    --heading-color: var(--contrast-color);
    --default-color: var(--contrast-color);
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 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: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    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);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

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

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

.section-title h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

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

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

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

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

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

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

.hero h2 span {
    color: var(--accent-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }

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

.hero .about-info {
    overflow: hidden;
    position: relative;
    padding: 10px 0 10px 0;
    z-index: 2;
    width: 100%;
}

.hero .about-info:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 58%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero .about-info h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.hero .about-info h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.hero .about-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}

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

/* --------------------------------------------------------------
# Events 4 Section
-------------------------------------------------------------- */
.events-4 {
    padding-top: 22px;
    padding-bottom: 22px;
}

.events-4 .card {
    border: 1;
    padding: 0 0px;
    margin-bottom: 5px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    background-color: transparent;
}

.events-4 .card-img {
    width: calc(100% + 0px);
    margin-left: 0px;
    overflow: hidden;
    z-index: 9;
    border-radius: 6px 6px 0 0;
}

.events-4 .card-img img {
    width: 100%;
    height: 300px;

    /* object-fit: cover */
    transition: transform 0.5s ease-in-out;
}

.events-4 .card-body {
    z-index: 10;
    background: var(--surface-color);
    border-top: 4px solid transparent;
    padding: 6px 11px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    transition: all 0.3s ease-in-out;
}

.events-4 .card-meta {
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    font-size: 15px;
}

.events-4 .card-meta i {
    color: var(--accent-color);
    font-size: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.events-4 .card-meta .date,
.events-4 .card-meta .time {
    vertical-align: middle;
}

.events-4 .card-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.events-4 .card-title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.events-4 .card-title a:hover {
    color: var(--accent-color);
}

.events-4 .card-text {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.events-4 .card-footer {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.events-4 .card-footer .location {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    font-size: 14px;
}

.events-4 .card-footer .location i {
    color: var(--accent-color);
    font-size: 15px;
    margin-right: 5px;
    vertical-align: left;
}

.events-4 .card-footer .location span {
    vertical-align: left;
}

.events-4 .card-footer .btn-learn-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s ease-in-out;
    padding: 8px 8px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events-4 .card-footer .btn-learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .events-4 .card {
        padding: 0 15px;
    }

    .events-4 .card-img {
        width: calc(100% + 30px);
        margin-left: -15px;
    }

    .events-4 .card-img img {
        height: 300px;
    }

    .events-4 .card-body {
        padding: 10px;
    }

    .events-4 .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .events-4 .card-footer .btn-learn-more {
        width: 100%;
        text-align: center;
    }
}

/* --------------------------------------------------------------
# Events Section
-------------------------------------------------------------- */
.events .details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.events .details .social {
    margin-bottom: 15px;
}

.events .details .social a {
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.events .details .social a i {
    font-size: 16px;
    line-height: 0;
}

.events .details p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
    margin-bottom: 10px;
}

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

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

.hero-2 .hero-container {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-2 .hero-container .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-2 .hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
    z-index: 2;
}

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

.hero-2 .hero-container .hero-content {
    padding-right: 30px;
}

.hero-2 .hero-container .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-2 .hero-container .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-2 .hero-container .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
}

.hero-2 .hero-container .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-2 .hero-container .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

.hero-2 .hero-container .hero-content .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-2 .hero-container .hero-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-2 .hero-container .hero-content .cta-buttons a {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 576px) {
    .hero-2 .hero-container .hero-content .cta-buttons a {
        width: 100%;
        max-width: 240px;
    }
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-secondary {
    background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
    color: var(--default-color);
    border: 2px solid var(--surface-color);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
    background-color: var(--surface-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-2 .hero-container .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.hero-2 .hero-container .stats-card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-2 .hero-container .stats-card .stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-2 .hero-container .stats-card .stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-2 .hero-container .stats-card .stats-header .decoration-line {
    height: 3px;
    width: 70px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.hero-2 .hero-container .stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-2 .hero-container .stats-card .stats-grid .stat-item {
    display: flex;
    align-items: center;
}

.hero-2 .hero-container .stats-card .stats-grid .stat-item .stat-icon {
    font-size: 1.8rem;
    height: 55px;
    width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-2 .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-2 .hero-container .stats-card .stats-grid .stat-item .stat-content p {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .hero-2 .hero-container .stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

.hero-2 .event-ticker {
    background-color: var(--accent-color);
    padding: 25px 0;
    color: var(--contrast-color);
}

.hero-2 .event-ticker .ticker-item {
    display: flex;
    align-items: center;
}

.hero-2 .event-ticker .ticker-item .date {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-2 .event-ticker .ticker-item .title {
    margin-right: 15px;
    font-size: 0.95rem;
}

.hero-2 .event-ticker .ticker-item .btn-register {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-2 .event-ticker .ticker-item .btn-register:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

/* --------------------------------------------------------------
# Call To Action Section
-------------------------------------------------------------- */
.call-to-action {
    padding-top: 80px;
    padding-bottom: 80px;
}

.call-to-action .content-wrapper {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .call-to-action .content-wrapper {
        padding-right: 0;
        margin-bottom: 48px;
    }
}

.call-to-action .section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.call-to-action h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.call-to-action .content-wrapper>p {
    font-size: 16px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 32px;
}

.call-to-action .trust-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
    .call-to-action .trust-metrics {
        flex-direction: column;
        gap: 20px;
    }
}

.call-to-action .trust-metrics .metric-item .metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.call-to-action .trust-metrics .metric-item .metric-label {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.call-to-action .certifications {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.call-to-action .certifications img {
    height: 40px;
    width: auto;
}

.call-to-action .certifications img:hover {
    opacity: 1;
}

.call-to-action .cta-box {
    background-color: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

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

.call-to-action .cta-header {
    margin-bottom: 32px;
}

.call-to-action .cta-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .call-to-action .cta-header h3 {
        font-size: 24px;
    }
}

.call-to-action .cta-header p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.call-to-action .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .call-to-action .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.call-to-action .benefit-item {
    display: flex;
    gap: 16px;
}

.call-to-action .benefit-item .benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 6px;
}

.call-to-action .benefit-item .benefit-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.call-to-action .benefit-item .benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.call-to-action .benefit-item .benefit-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    line-height: 1.5;
}

.call-to-action .action-area {
    padding-top: 32px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.call-to-action .action-area .btn-primary,
.call-to-action .action-area .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.call-to-action .action-area .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    color: var(--contrast-color);
}

.call-to-action .action-area .btn-secondary {
    background-color: var(--background-color);
    color: var(--default-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .action-area .btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

@media (min-width: 576px) {
    .call-to-action .action-area {
        flex-direction: row;
        align-items: center;
    }

    .call-to-action .action-area .btn-primary,
    .call-to-action .action-area .btn-secondary {
        flex: 1;
    }
}

.call-to-action .action-area .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 8px;
}

@media (min-width: 576px) {
    .call-to-action .action-area .contact-info {
        margin-top: 0;
        margin-left: auto;
        flex-shrink: 0;
    }
}

.call-to-action .action-area .contact-info i {
    font-size: 16px;
    color: var(--accent-color);
}

.call-to-action .action-area .contact-info strong {
    color: var(--default-color);
    font-weight: 600;
}

/* --------------------------------------------------------------
# Hero 8 Section
-------------------------------------------------------------- */
.hero-8 {
    position: relative;
    padding-top: 80px;
    background: ;
}

.hero-8::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
    pointer-events: none;
}

.hero-8 .hero-content {
    position: relative;
    z-index: 1;
}

.hero-8 .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-8 .hero-content h1 .accent-text {
    color: var(--accent-color);
}

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

    .hero-8 .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-8 .hero-content .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-8 .hero-content h1 {
        font-size: 2rem;
    }
}

.hero-8 .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
}

.hero-8 .company-badge i {
    font-size: 1.25rem;
}

.hero-8 .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-8 .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-8 .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-8 .btn-link:hover {
    color: var(--accent-color);
}

.hero-8 .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.hero-8 .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-8 .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-8 .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
}

.hero-8 .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero-8 .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
}

.hero-8 .customers-badge .avatar:first-child {
    margin-left: 0;
}

.hero-8 .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-8 .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
    .hero-8 .customers-badge {
        position: static;
        margin: 1rem auto;
        max-width: 250px;
    }
}

.hero-8 .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.hero-8 .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.hero-8 .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
}

.hero-8 .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-8 .stat-item:hover .stat-icon {
    background-color: var(--accent-color);
}

.hero-8 .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
}

.hero-8 .stat-item .stat-content {
    flex-grow: 1;
}

.hero-8 .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.hero-8 .stat-item .stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

@media (max-width: 575px) {
    .hero-8 .stat-item {
        padding: 1.5rem;
    }
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }

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

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

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

.hero-9::before,
.hero-9::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-9::before {
    background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    top: -100px;
    left: -100px;
}

.hero-9::after {
    background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
    bottom: -100px;
    right: -100px;
}

.hero-9 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-9 p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-9 .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-9 .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-9 .btn-primary .bi {
    margin-left: 0.5rem;
}

.hero-9 .features {
    display: flex;
    gap: 1.5rem;
}

.hero-9 .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-9 .feature-badge .bi {
    font-size: 1.2rem;
}

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

.hero-9 .hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 1rem;
    z-index: -1;
}

.hero-9 .hero-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-9 .client-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.hero-9 .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.hero-9 .client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .hero-9 .client-logo img {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .hero-9 {
        padding: 60px 0;
    }

    .hero-9 h1 {
        font-size: 2.5rem;
    }

    .hero-9 .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-9 .features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --------------------------------------------------------------
# Stats Section
-------------------------------------------------------------- */
.stats .stats-hero {
    margin-bottom: 2.5rem;
}

.stats .stats-hero .headline {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.stats .stats-hero .lead {
    color: var(--default-color);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.stats .stats-hero .stats-rating {
    background: var(--surface-color);
    border-radius: 2rem;
    box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 90%);
    min-width: 270px;
    gap: 8px;
}

.stats .stats-hero .stats-rating .stats-rating-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stats-hero .stats-rating .rating-score .fs-5 {
    color: var(--accent-color);
}

.stats .stats-hero .stats-rating .rating-score .stars {
    color: color-mix(in srgb, var(--accent-color), #ffd700 70%);
    font-size: 1.15rem;
}

.stats .stats-hero .stats-rating .user-feedback {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.95rem;
    font-family: var(--default-font);
}

.stats .stats-counters {
    margin-top: 0.5rem;
}

.stats .stats-counters .stats-counter-card {
    background: var(--surface-color);
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 1.75rem 1rem 1.25rem 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
}

.stats .stats-counters .stats-counter-card:hover {
    box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.stats .stats-counters .stats-counter-card .counter-value {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    display: flex;
    align-items: flex-end;
}

.stats .stats-counters .stats-counter-card .counter-value .purecounter {
    font-size: inherit;
    color: inherit;
}

.stats .stats-counters .stats-counter-card .label {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1rem;
    font-family: var(--default-font);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .stats .stats-hero .headline {
        font-size: 1.7rem;
    }

    .stats .stats-counters .stats-counter-card {
        font-size: 0.97rem;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

@media (max-width: 767px) {
    .stats .stats-hero {
        flex-direction: column;
    }

    .stats .stats-hero .headline {
        font-size: 1.3rem;
        text-align: center;
    }

    .stats .stats-hero .lead {
        font-size: 1rem;
        text-align: center;
    }

    .stats .stats-hero .stats-rating {
        margin-inline: auto;
    }

    .stats .stats-counters .stats-counter-card {
        padding: 1rem;
        font-size: 0.93rem;
    }
}

.stats .bi-star-fill,
.stats .bi-star-half {
    color: #ffae00;
    font-size: 1.18em;
    vertical-align: -0.13em;
    margin-right: 2px;
}

.stats .bi-star-fill:last-child,
.stats .bi-star-half:last-child {
    margin-right: 0;
}

/* --------------------------------------------------------------
# Stats 2 Section
-------------------------------------------------------------- */
.stats-2 .stats-overview {
    height: 100%;
    padding: 30px;
}

.stats-2 .stats-overview h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.stats-2 .stats-overview h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .stats-2 .stats-overview h3::after {
        margin: 0;
    }
}

.stats-2 .stats-overview p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.stats-2 .stats-card {
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-2 .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-2 .stats-card .stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.stats-2 .stats-card .stats-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.stats-2 .stats-card .stats-content {
    flex-grow: 1;
}

.stats-2 .stats-card .stats-content .stats-number {
    display: flex;
    align-items: baseline;
}

.stats-2 .stats-card .stats-content .stats-number .purecounter {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    line-height: 1;
}

.stats-2 .stats-card .stats-content .stats-number .plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 2px;
}

.stats-2 .stats-card .stats-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 5px 0 0;
    font-weight: 500;
    font-family: var(--heading-font);
}

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

    .stats-2 .stats-card {
        padding: 15px;
    }

    .stats-2 .stats-card .stats-icon {
        width: 50px;
        height: 50px;
    }

    .stats-2 .stats-card .stats-icon i {
        font-size: 20px;
    }

    .stats-2 .stats-card .stats-content .stats-number .purecounter {
        font-size: 28px;
    }

    .stats-2 .stats-card .stats-content .stats-number .plus {
        font-size: 20px;
    }
}

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

.hero-3 .hero-container {
    position: relative;
    min-height: 66vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-3 .hero-container .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-3 .hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 44%) 0%, color-mix(in srgb, var(--background-color), transparent 58%) 100%);
    z-index: 2;
}

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

.hero-3 .hero-container .hero-content {
    padding-right: 30px;
}

.hero-3 .hero-container .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-3 .hero-container .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-3 .hero-container .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
}

.hero-3 .hero-container .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-3 .hero-container .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

.hero-3 .hero-container .hero-content .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-3 .hero-container .hero-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-3 .hero-container .hero-content .cta-buttons a {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 576px) {
    .hero-3 .hero-container .hero-content .cta-buttons a {
        width: 100%;
        max-width: 240px;
    }
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-secondary {
    background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
    color: var(--default-color);
    border: 2px solid var(--surface-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
    background-color: var(--surface-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-3 .hero-container .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.hero-3 .hero-container .stats-card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .stats-card .stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-3 .hero-container .stats-card .stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-3 .hero-container .stats-card .stats-header .decoration-line {
    height: 3px;
    width: 70px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.hero-3 .hero-container .stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item {
    display: flex;
    align-items: center;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-icon {
    font-size: 1.8rem;
    height: 55px;
    width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-3 .hero-container .stats-card .stats-grid .stat-item .stat-content p {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .hero-3 .hero-container .stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-3 .hero-container {
        text-align: center;
    }
}

.hero-3 .event-ticker {
    background-color: var(--accent-color);
    padding: 25px 0;
    color: var(--contrast-color);
}

.hero-3 .event-ticker .ticker-item {
    display: flex;
    align-items: center;
}

.hero-3 .event-ticker .ticker-item .date {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-3 .event-ticker .ticker-item .title {
    margin-right: 15px;
    font-size: 0.95rem;
}

.hero-3 .event-ticker .ticker-item .btn-register {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-3 .event-ticker .ticker-item .btn-register:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

/* --------------------------------------------------------------
# Features Section
-------------------------------------------------------------- */
.features {
    padding: 80px 0;
    background-color: var(--background-color);
}

.features .features-content {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .features .features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

.features .features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .features .features-content h2 {
        font-size: 2rem;
    }
}

.features .features-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.features .features-content p {
    margin-bottom: 2rem;
    color: var(--default-color);
}

.features .features-content .features-list .feature-item {
    display: flex;
    margin-bottom: 2rem;
}

.features .features-content .features-list .feature-item:last-child {
    margin-bottom: 0;
}

.features .features-content .features-list .feature-item .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.features .features-content .features-list .feature-item .feature-icon:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
}

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

.features .features-content .features-list .feature-item .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.features .features-image {
    position: relative;
}

.features .features-image .main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.features .features-image .stats-card {
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 2;
    width: 220px;
}

@media (max-width: 768px) {
    .features .features-image .stats-card {
        width: 180px;
        padding: 15px;
        top: -20px;
        left: -10px;
    }
}

.features .features-image .stats-card .stat-item {
    text-align: center;
}

.features .features-image .stats-card .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .features .features-image .stats-card .stat-item h3 {
        font-size: 1.2rem;
    }
}

.features .features-image .stats-card .stat-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .features .features-image .stats-card .stat-item p {
        font-size: 0.7rem;
    }
}

.features .features-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@media (max-width: 768px) {
    .features .features-image .experience-badge {
        padding: 15px;
        right: 0;
    }
}

.features .features-image .experience-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features .features-image .experience-badge .badge-content .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .features .features-image .experience-badge .badge-content .number {
        font-size: 2rem;
    }
}

.features .features-image .experience-badge .badge-content .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* --------------------------------------------------------------
# Cards 2 Section
-------------------------------------------------------------- */
.cards-2 .feature-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 1;
}

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

.cards-2 .feature-card:hover .card-overlay {
    opacity: 1;
}

.cards-2 .feature-card:hover .card-body {
    transform: translateY(0);
    opacity: 1;
}

.cards-2 .feature-card:hover .card-title {
    opacity: 0;
}

.cards-2 .feature-card:hover .icon-wrapper {
    transform: translateY(-20px) scale(0.9);
    background-color: var(--contrast-color);
}

.cards-2 .feature-card:hover .icon-wrapper i {
    color: var(--accent-color);
}

.cards-2 .feature-card .icon-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    transition: all 0.4s ease;
}

.cards-2 .feature-card .card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.4s ease;
    z-index: 3;
}

.cards-2 .feature-card .card-title h3 {
    color: var(--contrast-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.cards-2 .feature-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px 30px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cards-2 .feature-card .card-body h3 {
    color: var(--contrast-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cards-2 .feature-card .card-body p {
    color: var(--contrast-color);
    font-size: 14px;
    margin-bottom: 0;
}

.cards-2 .feature-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.cards-2 .feature-card .card-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, color-mix(in srgb, var(--heading-color), transparent 30%) 100%);
}

.cards-2 .feature-card .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

@media (max-width: 1199px) {
    .cards-2 .feature-card {
        height: 300px;
    }

    .cards-2 .feature-card .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 20px;
        left: 20px;
    }

    .cards-2 .feature-card .card-title,
    .cards-2 .feature-card .card-body {
        padding: 20px 25px;
    }

    .cards-2 .feature-card .card-title h3,
    .cards-2 .feature-card .card-body h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cards-2 .feature-card .card-title p,
    .cards-2 .feature-card .card-body p {
        font-size: 13px;
    }

    .cards-2 .feature-card .card-title h3 {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .cards-2 .feature-card {
        height: 280px;
    }
}

/* --------------------------------------------------------------
# Author 4 Section
-------------------------------------------------------------- */
.author-4 .author-box {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.author-4 .author-box:hover {
    transform: translateY(-5px);
}

.author-4 .author-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-4 .author-img:hover {
    transform: scale(1.05);
}

.author-4 .author-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    margin: 0 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.author-4 .author-social-links a.linkedin:hover {
    background-color: #0077b5;
}

.author-4 .author-social-links a.twitter:hover {
    background-color: #000000;
}

.author-4 .author-social-links a.github:hover {
    background-color: #333333;
}

.author-4 .author-social-links a.facebook:hover {
    background-color: #1877f2;
}

.author-4 .author-social-links a.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.author-4 .author-content {
    padding-left: 1rem;
}

@media (max-width: 767.98px) {
    .author-4 .author-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
}

.author-4 .author-content .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.author-4 .author-content .author-title {
    display: inline-block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 0.5rem;
    font-family: var(--heading-font);
}

.author-4 .author-content .author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
    margin: 1rem 0;
}

.author-4 .author-content .author-website {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author-4 .author-content .author-website {
        justify-content: center;
    }
}

.author-4 .author-content .author-website a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.author-4 .author-content .author-website a i {
    font-size: 1.1rem;
}

.author-4 .author-content .author-website a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    transform: translateX(3px);
}

.author-4 .author-content .author-website .more-posts {
    font-weight: 500;
}

/* --------------------------------------------------------------
# Clients Section
-------------------------------------------------------------- */
.clients .swiper {
    padding: 10px 0;
}

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

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/* --------------------------------------------------------------
# Venue 2 Section
-------------------------------------------------------------- */
.venue-2 .venue-info .venue-header h3 {
    color: var(--heading-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.venue-2 .venue-info .venue-header .venue-address,
.venue-2 .venue-info .venue-header .event-dates {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--default-color);
    font-size: 1.1rem;
}

.venue-2 .venue-info .venue-header .venue-address i,
.venue-2 .venue-info .venue-header .event-dates i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.venue-2 .venue-info .venue-description {
    margin-bottom: 2rem;
}

.venue-2 .venue-info .venue-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--default-color);
}

.venue-2 .venue-info .venue-amenities {
    margin-bottom: 2rem;
}

.venue-2 .venue-info .venue-amenities h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.venue-2 .venue-info .venue-amenities .amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.venue-2 .venue-info .venue-amenities .amenities-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--default-color);
}

.venue-2 .venue-info .venue-amenities .amenities-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.venue-2 .venue-info .travel-info h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.venue-2 .venue-info .travel-info .travel-options .travel-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.venue-2 .venue-info .travel-info .travel-options .travel-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 30px;
    text-align: center;
}

.venue-2 .venue-info .travel-info .travel-options .travel-item strong {
    display: block;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.venue-2 .venue-info .travel-info .travel-options .travel-item p {
    margin: 0;
    color: var(--default-color);
    font-size: 0.9rem;
}

.venue-2 .venue-visuals .venue-gallery .main-venue-image {
    border-radius: 8px;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.venue-2 .venue-visuals .venue-gallery img:not(.main-venue-image) {
    border-radius: 8px;
    height: 120px;
    object-fit: cover;
    width: 100%;
}

.venue-2 .venue-visuals .venue-map {
    margin-bottom: 1.5rem;
}

.venue-2 .venue-visuals .venue-map h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.venue-2 .venue-visuals .venue-map .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-visuals .venue-actions .btn {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.venue-2 .venue-visuals .venue-actions .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.venue-2 .venue-visuals .venue-actions .btn.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: transparent;
}

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

.venue-2 .venue-visuals .venue-actions .btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .venue-2 .venue-info .venue-amenities .row {
        margin: 0;
    }

    .venue-2 .venue-info .venue-amenities .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }

    .venue-2 .venue-visuals .venue-gallery .main-venue-image {
        height: 200px;
    }

    .venue-2 .venue-visuals .venue-gallery img:not(.main-venue-image) {
        height: 100px;
    }

    .venue-2 .venue-info .travel-info .travel-item {
        margin-bottom: 1rem;
    }
}

/* --------------------------------------------------------------
# Venue Section
-------------------------------------------------------------- */
.venue .venue-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.venue .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.venue .venue-card .venue-image {
    position: relative;
    overflow: hidden;
}

.venue .venue-card .venue-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue .venue-card .venue-image .venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue .venue-card .venue-image .venue-badge i {
    font-size: 16px;
}

.venue .venue-card .venue-content {
    padding: 30px;
}

.venue .venue-card .venue-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.venue .venue-card .venue-content .venue-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue .venue-card .venue-content .venue-address i {
    color: var(--accent-color);
    font-size: 18px;
}

.venue .venue-card .venue-content .venue-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.venue .venue-card .venue-content .venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.venue .venue-card .venue-content .venue-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.venue .venue-card .venue-content .venue-features .feature-item i {
    color: var(--accent-color);
    font-size: 16px;
}

@media (max-width: 576px) {
    .venue .venue-card .venue-content .venue-features {
        grid-template-columns: 1fr;
    }
}

.venue .directions-section .map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.venue .directions-section .map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.venue .directions-section .travel-options {
    margin-bottom: 30px;
}

.venue .directions-section .travel-options h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.venue .directions-section .travel-options .travel-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.venue .directions-section .travel-options .travel-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.venue .directions-section .travel-options .travel-item .travel-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue .directions-section .travel-options .travel-item .travel-icon i {
    color: var(--accent-color);
    font-size: 20px;
}

.venue .directions-section .travel-options .travel-item .travel-info {
    flex: 1;
}

.venue .directions-section .travel-options .travel-item .travel-info h5 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.venue .directions-section .travel-options .travel-item .travel-info p {
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
}

.venue .directions-section .travel-options .travel-item .travel-info .travel-time {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
}

.venue .directions-section .venue-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.venue .directions-section .venue-actions .btn {
    flex: 1;
    min-width: 160px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.venue .directions-section .venue-actions .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.venue .directions-section .venue-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.venue .directions-section .venue-actions .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

@media (max-width: 576px) {
    .venue .directions-section .venue-actions .btn {
        flex: none;
        width: 100%;
    }
}

.venue .accommodation-section {
    margin-top: 60px;
    padding: 40px 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 24px;
}

.venue .accommodation-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.venue .accommodation-section .section-header h4 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.venue .accommodation-section .section-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
}

.venue .accommodation-section .hotel-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.venue .accommodation-section .hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.venue .accommodation-section .hotel-card .hotel-rating {
    margin-bottom: 15px;
}

.venue .accommodation-section .hotel-card .hotel-rating i {
    color: #ffd700;
    font-size: 16px;
    margin-right: 2px;
}

.venue .accommodation-section .hotel-card h5 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.venue .accommodation-section .hotel-card .hotel-distance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
}

.venue .accommodation-section .hotel-card .hotel-distance i {
    color: var(--accent-color);
}

.venue .accommodation-section .hotel-card .hotel-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.venue .accommodation-section .hotel-card .hotel-price .period {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

@media (max-width: 992px) {
    .venue .directions-section {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .venue .venue-card .venue-content {
        padding: 25px 20px;
    }

    .venue .accommodation-section {
        margin-top: 40px;
        padding: 30px 20px;
    }
}

/* --------------------------------------------------------------
# Gallery Section
-------------------------------------------------------------- */
.gallery .container-fluid {
    margin-bottom: 3px;
}

.gallery .venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.gallery .venue-info {
    background: url("../img/bg/abstract-bg-9.webp") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.gallery .venue-info:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.gallery .venue-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--contrast-color);
}

@media (max-width: 574px) {
    .gallery .venue-info h3 {
        font-size: 24px;
    }
}

.gallery .venue-info p {
    color: var(--contrast-color);
    margin-bottom: 0;
}

.gallery .venue-gallery-container {
    padding-right: 12px;
}

.gallery .venue-gallery {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

.gallery .venue-gallery img {
    transition: all ease-in-out 0.4s;
}

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

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

/* --------------------------------------------------------------
# Author 2 Section
-------------------------------------------------------------- */
.author-2 .author-box {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.author-2 .author-box:hover {
    transform: translateY(-5px);
}

.author-2 .author-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-2 .author-img:hover {
    transform: scale(1.05);
}

.author-2 .author-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    margin: 0 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.author-2 .author-social-links a.linkedin:hover {
    background-color: #0077b5;
}

.author-2 .author-social-links a.twitter:hover {
    background-color: #000000;
}

.author-2 .author-social-links a.github:hover {
    background-color: #333333;
}

.author-2 .author-social-links a.facebook:hover {
    background-color: #1877f2;
}

.author-2 .author-social-links a.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.author-2 .author-content {
    padding-left: 1rem;
}

@media (max-width: 767.98px) {
    .author-2 .author-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
}

.author-2 .author-content .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.author-2 .author-content .author-title {
    display: inline-block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 0.5rem;
    font-family: var(--heading-font);
}

.author-2 .author-content .author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
    margin: 1rem 0;
}

.author-2 .author-content .author-website {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author-2 .author-content .author-website {
        justify-content: center;
    }
}

.author-2 .author-content .author-website a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.author-2 .author-content .author-website a i {
    font-size: 1.1rem;
}

.author-2 .author-content .author-website a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    transform: translateX(3px);
}

.author-2 .author-content .author-website .more-posts {
    font-weight: 500;
}

/* --------------------------------------------------------------
# Author 3 Section
-------------------------------------------------------------- */
.author-3 .author-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.author-3 .author-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.author-3 .author-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .author-3 .author-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
}

.author-3 .author-image-container {
    position: relative;
    flex-shrink: 0;
}

.author-3 .author-image-container .author-image {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.author-3 .author-image-container .expertise-tags {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    width: max-content;
}

.author-3 .author-image-container .expertise-tags span {
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.author-3 .author-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-3 .author-intro .name-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author-3 .author-intro .name-block {
        justify-content: center;
    }
}

.author-3 .author-intro .name-block .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.author-3 .author-intro .name-block .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 70%));
    color: var(--accent-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.author-3 .author-intro .name-block .verified-badge i {
    font-size: 1rem;
}

.author-3 .author-intro .author-tagline {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.author-3 .author-content {
    position: relative;
    z-index: 1;
}

.author-3 .author-content .content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .author-3 .author-content .content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.author-3 .author-content .bio-section .bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 1.5rem;
}

.author-3 .author-content .bio-section .author-metrics {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 767.98px) {
    .author-3 .author-content .bio-section .author-metrics {
        justify-content: center;
    }
}

.author-3 .author-content .bio-section .author-metrics .metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.author-3 .author-content .bio-section .author-metrics .metric i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.author-3 .author-content .featured-posts h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.author-3 .author-content .featured-posts .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-3 .author-content .featured-posts .post-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.author-3 .author-content .featured-posts .post-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.author-3 .author-content .featured-posts .post-list li span {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.author-3 .author-content .featured-posts .post-list li:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.author-3 .author-content .featured-posts .post-list li:hover i {
    transform: translateX(3px);
}

.author-3 .author-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
    .author-3 .author-footer {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.author-3 .author-footer .connect-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author-3 .author-footer .connect-links {
        justify-content: center;
    }
}

.author-3 .author-footer .connect-links .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    color: var(--default-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.author-3 .author-footer .connect-links .social-link i {
    font-size: 1rem;
}

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

.author-3 .author-footer .subscribe-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.author-3 .author-footer .subscribe-button i {
    transition: transform 0.3s ease;
}

.author-3 .author-footer .subscribe-button:hover {
    background-color: var(--heading-color);
}

.author-3 .author-footer .subscribe-button:hover i {
    transform: rotate(15deg);
}

/* --------------------------------------------------------------
# Author Section
-------------------------------------------------------------- */
.author .author-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.author .author-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.author .author-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .author .author-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
}

.author .author-image-container {
    position: relative;
    flex-shrink: 0;
}

.author .author-image-container .author-image {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.author .author-image-container .expertise-tags {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    width: max-content;
}

.author .author-image-container .expertise-tags span {
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.author .author-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author .author-intro .name-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author .author-intro .name-block {
        justify-content: center;
    }
}

.author .author-intro .name-block .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.author .author-intro .name-block .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 70%));
    color: var(--accent-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.author .author-intro .name-block .verified-badge i {
    font-size: 1rem;
}

.author .author-intro .author-tagline {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.author .author-content {
    position: relative;
    z-index: 1;
}

.author .author-content .content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .author .author-content .content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.author .author-content .bio-section .bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 1.5rem;
}

.author .author-content .bio-section .author-metrics {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 767.98px) {
    .author .author-content .bio-section .author-metrics {
        justify-content: center;
    }
}

.author .author-content .bio-section .author-metrics .metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.author .author-content .bio-section .author-metrics .metric i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.author .author-content .featured-posts h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.author .author-content .featured-posts .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author .author-content .featured-posts .post-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.author .author-content .featured-posts .post-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.author .author-content .featured-posts .post-list li span {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.author .author-content .featured-posts .post-list li:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.author .author-content .featured-posts .post-list li:hover i {
    transform: translateX(3px);
}

.author .author-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
    .author .author-footer {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.author .author-footer .connect-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .author .author-footer .connect-links {
        justify-content: center;
    }
}

.author .author-footer .connect-links .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    color: var(--default-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.author .author-footer .connect-links .social-link i {
    font-size: 1rem;
}

.author .author-footer .connect-links .social-link:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.author .author-footer .subscribe-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.author .author-footer .subscribe-button i {
    transition: transform 0.3s ease;
}

.author .author-footer .subscribe-button:hover {
    background-color: var(--heading-color);
}

.author .author-footer .subscribe-button:hover i {
    transform: rotate(15deg);
}

/* --------------------------------------------------------------
# Clients 2 Section
-------------------------------------------------------------- */
.clients-2 .swiper {
    padding: 10px 0;
}

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

.clients-2 .swiper-slide img {
    transition: 0.3s;
}

.clients-2 .swiper-slide img:hover {
    transform: scale(1.1);
}

/* --------------------------------------------------------------
# About Section
-------------------------------------------------------------- */
.about .about-content h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.about .about-content .fst-italic {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .about-content .feature-item {
    margin-bottom: 1.5rem;
    padding: 20px;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: inline-block;
}

.about .about-content .feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.about .about-content .signature .chef-name {
    font-weight: 600;
    font-style: italic;
    margin-bottom: 5px;
}

.about .about-content .signature img {
    max-width: 180px;
    height: auto;
    margin-top: 5px;
}

.about .about-gallery {
    position: relative;
}

.about .about-gallery .years-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .about-gallery .years-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about .about-gallery .years-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about .about-gallery img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about .about-gallery img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .about .about-gallery {
        margin-top: 2rem;
    }

    .about .about-gallery .years-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .about .about-gallery .years-badge .number {
        font-size: 2rem;
    }

    .about .about-gallery .years-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .about .about-gallery .years-badge {
        bottom: 15px;
        right: 15px;
    }

    .about .about-content .signature img {
        max-width: 150px;
    }
}

/* --------------------------------------------------------------
# About 5 Section
-------------------------------------------------------------- */
.about-5 .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.about-5 .content p {
    margin-bottom: 30px;
}

.about-5 .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: var(--accent-color);
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--accent-color);
}

.about-5 .content .about-btn i {
    font-size: 16px;
    padding-left: 5px;
}

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

.about-5 .icon-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.about-5 .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.about-5 .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

.about-5 .icon-box:hover h4 a {
    color: var(--accent-color);
}

/* --------------------------------------------------------------
# Testimonials Section
-------------------------------------------------------------- */
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.testimonials .testimonial-item .stars i {
    margin-right: 2px;
}

.testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 36px;
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
    line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
    transform: scaleX(-1);
}

@media (max-width: 768px) {
    .testimonials .testimonial-item {
        padding: 25px 20px;
    }

    .testimonials .testimonial-item p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
        font-size: 16px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
        font-size: 13px;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials .testimonial-item {
        padding: 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}

/* --------------------------------------------------------------
# About 2 Section
-------------------------------------------------------------- */
.about-2 ul {
    list-style: none;
    padding: 0;
}

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

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

.about-2 .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-2 .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about-2 .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-2 .read-more:hover i {
    transform: translate(5px, 0);
}

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

/* --------------------------------------------------------------
# Hero 4 Section
-------------------------------------------------------------- */
.hero-4 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

.hero-4 .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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

.hero-4 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-4 .hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-4 .hero-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

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

.hero-4 .hero-buttons .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.hero-4 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-4 .hero-stats .stat-item {
    text-align: center;
}

.hero-4 .hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-4 .hero-stats .stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-4 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-4 .hero-visual {
    position: relative;
}

.hero-4 .hero-visual .hero-image {
    position: relative;
    z-index: 2;
}

.hero-4 .hero-visual .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-4 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero-4 .floating-elements .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-4 .floating-elements .floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-4 .floating-elements .floating-card span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.hero-4 .floating-elements .floating-card.card-1 {
    top: 20%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.hero-4 .floating-elements .floating-card.card-2 {
    top: 60%;
    left: -15%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-4 .floating-elements .floating-card.card-3 {
    bottom: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite 4s;
}

@media (max-width: 992px) {
    .hero-4 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-4 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-4 .floating-elements .floating-card {
        display: none;
    }
}

.hero-4 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-4 .hero-bg-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.hero-4 .hero-bg-elements .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.hero-4 .hero-bg-elements .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.hero-4 .hero-bg-elements .bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveParticles 30s linear infinite;
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

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

@media (max-width: 768px) {
    .hero-4 .hero-buttons {
        justify-content: center;
    }

    .hero-4 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------
# Hero 7 Section
-------------------------------------------------------------- */
.hero-7 {
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero-7::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
    pointer-events: none;
}

.hero-7 .hero-content {
    position: relative;
    z-index: 1;
}

.hero-7 .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-7 .hero-content h1 .accent-text {
    color: var(--accent-color);
}

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

    .hero-7 .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-7 .hero-content .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-7 .hero-content h1 {
        font-size: 2rem;
    }
}

.hero-7 .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
}

.hero-7 .company-badge i {
    font-size: 1.25rem;
}

.hero-7 .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-7 .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-7 .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-7 .btn-link:hover {
    color: var(--accent-color);
}

.hero-7 .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.hero-7 .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-7 .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-7 .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
}

.hero-7 .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero-7 .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
}

.hero-7 .customers-badge .avatar:first-child {
    margin-left: 0;
}

.hero-7 .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-7 .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
    .hero-7 .customers-badge {
        position: static;
        margin: 1rem auto;
        max-width: 250px;
    }
}

.hero-7 .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.hero-7 .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.hero-7 .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
}

.hero-7 .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-7 .stat-item:hover .stat-icon {
    background-color: var(--accent-color);
}

.hero-7 .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
}

.hero-7 .stat-item .stat-content {
    flex-grow: 1;
}

.hero-7 .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.hero-7 .stat-item .stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

@media (max-width: 575px) {
    .hero-7 .stat-item {
        padding: 1.5rem;
    }
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }

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

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