/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Poppins", 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: "Libre Baskerville", sans-serif;
    --nav-font: "Poppins", 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: #101719; /* Background color for the entire website, including individual sections */
    --default-color: #f1f3f5; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #f4f7fa; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #3d85c6; /* 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: #252a2b; /* 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: #f1f3f5; /* The default color of the main navmenu links */
    --nav-hover-color: #3d85c6; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #243438; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #243438; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #f1f3f5; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #3d85c6; /* 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: #243438;
    --surface-color: #385157;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
    padding: 0;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

    .page-title .heading {
        padding: 80px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

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

    .page-title nav {
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
        padding: 20px 0;
    }

        .page-title nav ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

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

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

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

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #000000;
    --accent-color: #3d85c6;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    padding: 0;
}

    .hero .hero-container {
        padding: 0;
    }

        .hero .hero-container .content-col {
            padding: 3rem 5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

@media (max-width: 992px) {
    .hero .hero-container .content-col {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-container .content-col {
        padding: 2.5rem 1.5rem;
    }
}

.hero .hero-container .content-col .content-wrapper {
    max-width: 570px;
}

.hero .hero-container .content-col .status-badge {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero .hero-container .content-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero .hero-container .content-col h2 {
        font-size: 3rem;
    }
}

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

@media (max-width: 768px) {
    .hero .hero-container .content-col h2 {
        font-size: 2.2rem;
    }
}

.hero .hero-container .content-col p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero .hero-container .content-col p {
        font-size: 1rem;
    }
}

.hero .hero-container .content-col .opening-hours {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
    font-weight: 500;
}

    .hero .hero-container .content-col .opening-hours i {
        font-size: 1.2rem;
        margin-right: 0.75rem;
        color: var(--accent-color);
    }

    .hero .hero-container .content-col .opening-hours span {
        font-size: 0.95rem;
    }

.hero .hero-container .content-col .btn-group {
    display: block;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .hero .hero-container .content-col .btn-group {
        flex-direction: column;
        width: 100%;
    }

        .hero .hero-container .content-col .btn-group .btn {
            width: 100%;
            text-align: center;
        }
}

.hero .hero-container .content-col .btn-group .btn {
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .hero .hero-container .content-col .btn-group .btn.btn-book {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: transparent;
    }

        .hero .hero-container .content-col .btn-group .btn.btn-book:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 20%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

    .hero .hero-container .content-col .btn-group .btn.btn-menu {
        background-color: transparent;
        color: var(--heading-color);
        border: 2px solid var(--heading-color);
    }

        .hero .hero-container .content-col .btn-group .btn.btn-menu:hover {
            background-color: transparent;
            color: var(--accent-color);
            transform: translateY(-3px);
            border-color: var(--accent-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

.hero .hero-container .content-col .social-links {
    display: flex;
    gap: 1rem;
}

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

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

        .hero .hero-container .content-col .social-links a i {
            font-size: 1.2rem;
        }

.hero .hero-container .hero-swiper {
    position: relative;
}

    .hero .hero-container .hero-swiper .swiper-slide {
        position: relative;
    }

        .hero .hero-container .hero-swiper .swiper-slide .img-container {
            position: relative;
            overflow: hidden;
            height: calc(100vh - 90px);
        }

            .hero .hero-container .hero-swiper .swiper-slide .img-container img {
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                inset: 0;
            }

    .hero .hero-container .hero-swiper .swiper-button-next,
    .hero .hero-container .hero-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        background-color: color-mix(in srgb, #000, transparent 70%);
        border-radius: 50%;
        color: var(--contrast-color);
        transition: all 0.3s ease;
    }

        .hero .hero-container .hero-swiper .swiper-button-next:after,
        .hero .hero-container .hero-swiper .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .hero .hero-container .hero-swiper .swiper-button-next:hover,
        .hero .hero-container .hero-swiper .swiper-button-prev:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .hero .hero-container .hero-swiper .swiper-button-next {
        right: 20px;
    }

    .hero .hero-container .hero-swiper .swiper-button-prev {
        left: 20px;
    }

@media (max-width: 992px) {
    .hero .hero-container .content-col {
        order: 2;
    }

        .hero .hero-container .content-col h2 {
            font-size: 20px;
        }

    .hero .hero-container .swiper-col {
        order: 1;
    }

    .hero .hero-container .hero-swiper .swiper-slide .img-container {
        height: calc(70vh - 80px);
    }

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

        .hero .hero-container .hero-swiper .swiper-button-next:after,
        .hero .hero-container .hero-swiper .swiper-button-prev:after {
            font-size: 1rem;
        }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
    --background-color: #f3f7fa;
    --default-color: #000000;
    --heading-color: #000000;
    --accent-color: #3d85c6;
    --surface-color: #3d85c6;
    --contrast-color: #eeeeee;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .about-2 .content h3 {
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

        .about-2 .content h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            height: 3px;
            width: 60px;
            background-color: var(--accent-color);
        }

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

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

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

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

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

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

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

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

@media (max-width: 600px) {
    .about-2 .section-title h2 {
        font-size: 22px;
    }

        .about-2 .section-title h2:before,
        .about-2 .section-title h2:after {
            width: 15px;
        }

    .about-2 .icon-box h4 {
        font-size: 17px;
    }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #000000;
    --accent-color: #3d85c6;
    --surface-color: #3d85c6;
    --contrast-color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

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

        .hero-3 .hero-content .hero-text {
            padding: 0 20px;
        }

            .hero-3 .hero-content .hero-text h1 {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
                line-height: 1.1;
            }

            .hero-3 .hero-content .hero-text p {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 2rem;
                color: #686868;
                text-align: justify;
            }

            .hero-3 .hero-content .hero-text .hero-badges {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 2rem;
            }

                .hero-3 .hero-content .hero-text .hero-badges .discount-badge,
                .hero-3 .hero-content .hero-text .hero-badges .shipping-badge {
                    display: inline-flex;
                    align-items: center;
                    padding: 8px 16px;
                    border-radius: 4px;
                    font-size: 0.875rem;
                    font-weight: 600;
                }

                .hero-3 .hero-content .hero-text .hero-badges .discount-badge {
                    background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
                    color: var(--heading-color);
                }

                    .hero-3 .hero-content .hero-text .hero-badges .discount-badge:before {
                        content: "\f242";
                        font-family: "bootstrap-icons";
                        margin-right: 6px;
                    }

                .hero-3 .hero-content .hero-text .hero-badges .shipping-badge {
                    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
                    color: var(--accent-color);
                }

                    .hero-3 .hero-content .hero-text .hero-badges .shipping-badge:before {
                        content: "\f416";
                        font-family: "bootstrap-icons";
                        margin-right: 6px;
                    }

            .hero-3 .hero-content .hero-text .hero-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
            }

                .hero-3 .hero-content .hero-text .hero-actions .btn {
                    padding: 12px 28px;
                    font-weight: 600;
                    border-radius: 6px;
                    font-size: 1rem;
                    transition: all 0.3s ease;
                }

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

                    .hero-3 .hero-content .hero-text .hero-actions .btn-primary:hover {
                        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
                        border-color: color-mix(in srgb, var(--accent-color), #000 15%);
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    }

                .hero-3 .hero-content .hero-text .hero-actions .btn-outline {
                    background-color: transparent;
                    border: 2px solid var(--heading-color);
                    color: var(--default-color);
                }

                    .hero-3 .hero-content .hero-text .hero-actions .btn-outline:hover {
                        background-color: transparent;
                        color: var(--accent-color);
                        border-color: var(--accent-color);
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    }

        .hero-3 .hero-content .hero-image {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .hero-3 .hero-content .hero-image img {
                position: relative;
                z-index: 2;
                max-height: 600px;
                object-fit: contain;
                border-radius: 8px;
            }

            .hero-3 .hero-content .hero-image .image-accent {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 80%;
                height: 80%;
                background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
                border-radius: 100%;
                z-index: 1;
            }

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

        .hero-3 .hero-text {
            padding-right: 0;
            text-align: center;
            margin-top: 40px;
        }

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

            .hero-3 .hero-text .hero-badges {
                justify-content: center;
            }

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

        .hero-3 .hero-image {
            margin-bottom: 40px;
        }

            .hero-3 .hero-image img {
                max-height: 450px;
            }
}

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

        .hero-3 .hero-text h1 {
            font-size: 22px !important;
        }

        .hero-3 .hero-text p {
            font-size: 1rem;
        }

        .hero-3 .hero-text .hero-actions {
            flex-direction: column;
        }

            .hero-3 .hero-text .hero-actions .btn {
                width: 100%;
            }

        .hero-3 .hero-image img {
            max-height: 350px;
        }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #000000;
    --accent-color: #3d85c6;
    --surface-color: #f3f6f4;
    --contrast-color: #000000;
    padding-top: 60px;
    padding-bottom: 60px;
}

    .services .service-item {
        position: relative;
        padding: 60px 30px 80px;
        background-color: var(--surface-color);
        border-radius: 12px;
        box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.3s ease;
    }

        .services .service-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--accent-color);
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        .services .service-item .service-icon {
            width: 72px;
            height: 72px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
            color: var(--accent-color);
            font-size: 34px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

            .services .service-item .service-icon i {
                line-height: 1;
            }

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

            .services .service-item h3 a {
                color: var(--heading-color);
                transition: color 0.3s ease;
                font-size: 20px;
            }

                .services .service-item h3 a span {
                    display: inline-block;
                    color: var(--accent-color);
                }

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

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

        .services .service-item .card-action {
            position: absolute;
            right: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 22px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

            .services .service-item .card-action i {
                transition: transform 0.3s ease;
            }

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

        .services .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        }

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

            .services .service-item:hover p {
                color: #686868;
            }

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

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

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

        .services .service-item .service-icon {
            width: 64px;
            height: 64px;
            font-size: 30px;
        }
}

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

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

@media (max-width: 600px) {
    .services h2 {
        font-size: 22px;
        font-weight: 700;
        position: relative;
        display: flex;
    }

    .services h5 {
        font-size: 17px;
    }

    .about-2 .icon-box {
        padding: 0 30px;
    }

    .hero-3 .hero-content .hero-text p {
        margin-bottom: 1rem;
    }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    --background-color: #000000;
    padding-top: 100px;
    position: relative;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 100px;
}

    .hero-2::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
        z-index: 1;
    }

    .hero-2 .container,
    .hero-2 .container-fluid {
        position: relative;
        z-index: 2;
    }

    .hero-2 .content-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 3rem;
    }

@media (max-width: 991px) {
    .hero-2 .content-col {
        padding-right: 15px;
        margin-bottom: 3rem;
    }
}

.hero-2 .agency-name {
    margin-bottom: 1.5rem;
}

    .hero-2 .agency-name h5 {
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--contrast-color);
        margin: 0;
    }

.hero-2 .main-heading {
    margin-bottom: 2rem;
}

    .hero-2 .main-heading h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0;
    }

@media (max-width: 1200px) {
    .hero-2 .main-heading h1 {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .hero-2 .main-heading h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-2 .main-heading h1 {
        font-size: 26px;
    }
}

.hero-2 .divider {
    width: 60%;
    height: 1px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .hero-2 .divider {
        width: 100%;
    }
}

.hero-2 .description {
    margin-bottom: 2.5rem;
}

    .hero-2 .description p {
        font-size: 15px;
        line-height: 1.7;
        color: #fff;
        margin: 0;
    }

.hero-2 .cta-button .btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
    color: var(--default-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .hero-2 .cta-button .btn span {
        margin-right: 0.5rem;
    }

    .hero-2 .cta-button .btn i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

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

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

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

@media (max-width: 991px) {
    .hero-2 .visual-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero-2 .divider {
        width: 100%;
    }

    .hero-3 .hero-content .hero-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #686868;
        text-align: left;
    }

    .hero-2 .description {
        margin-bottom: 2.5rem;
        background: #0000007a;
    }

        .hero-2 .description p {
            font-size: 16px;
            line-height: 1.7;
            color: #fff;
            margin: 0;
        }
}

.hero-2 .fluid-shape {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .hero-2 .fluid-shape .fluid-img {
        width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
    }

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

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

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

.hero-2 .stats-card {
    position: absolute;
    bottom: 10%;
    right: 0;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    padding: 1.5rem;
    width: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .hero-2 .stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        width: 90%;
    }
}

.hero-2 .stats-card .stats-number h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.hero-2 .stats-card .stats-label {
    margin-top: 0.5rem;
}

    .hero-2 .stats-card .stats-label p {
        font-size: 0.9rem;
        margin: 0;
    }

.hero-2 .stats-card .stats-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

    .hero-2 .stats-card .stats-arrow a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: var(--accent-color);
        border-radius: 50%;
        color: var(--contrast-color);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .hero-2 .stats-card .stats-arrow a:hover {
            transform: translateY(-3px);
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #000000;
    --accent-color: #3d85c6;
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 101px;
}

    .call-to-action .container {
        position: relative;
    }

    .call-to-action h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-size: 2.5rem;
    }

    .call-to-action .lead {
        color: #686868;
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
        font-size: 14px;
    }

        .call-to-action .btn:hover {
            transform: translateY(-2px);
        }

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

        .call-to-action .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

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

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

        .call-to-action h2 {
            font-size: 2.5rem;
        }

        .call-to-action .lead {
            font-size: 1.1rem;
        }

        .call-to-action .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action .scribble {
            transform: scale(0.7);
        }
}

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

#hero-2 {
    position: relative;
    overflow: hidden;
    min-height: 350px; /* full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* makes text readable on video */
}

    #hero-2 .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* makes video cover like background-size: cover */
        z-index: 1; /* pushes video behind content */
    }

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

.hero-2 {
    --background-color: transparent;
}

.call-to-action .scribble::before {
    background-color: #3d85c621;
}

@media (max-width: 600px) {
    .hero-2 .divider {
        margin-bottom: 1rem;
    }

    #hero-2 .bg-video {
        position: relative;
    }

    #hero-2 {
        min-height: 0;
        display: block;
        min-height: 0;
        margin: 0;
        padding: 0;
    }

    .call-to-action h2, .hero-2 .main-heading h1 {
        font-size: 28px;
    }

    .hero-2 .content-col {
        padding-right: 15px;
        margin: 1pc 0 0;
    }

    .hero-2 .agency-name {
        margin: 1.5rem 0;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 80%;
    }
}
