/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Open Sans", 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: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #106eea; /* 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: #222222; /* The default color of the main navmenu links */
    --nav-hover-color: #106eea; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #106eea; /* 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: #f5f9ff;
    --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

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

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

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

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

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

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

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

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

.header .branding {
    background-color: var(--background-color);
    min-height: 40px;
    padding: 0px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        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;
        transition: 0.3s;
    }

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

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

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

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

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .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);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

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

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

    .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-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    padding: 50px 0;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
    padding-top: 50px;
}

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

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

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

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

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

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

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

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

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 600;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

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

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

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

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

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

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.section-title p {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.section-title p .description-title {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 75vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    /*background: url("../img/hero-bg.jpg") top left;*/
    background-color: #006bff;
    background-size: cover;
}

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

.hero .container {
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #ffffff !important;
}

.hero h1 span {
    color: var(--accent-color);
    color: #9feaff !important;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff !important;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

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

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

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

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.featured-services .service-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .service-item .icon {
    margin-bottom: 10px;
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

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

.featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
    color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

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

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

.about .about-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.about .about-content ul li:first-child {
    margin-top: 35px;
}

.about .about-content ul i {
    background: var(--surface-color);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-color);
    border-radius: 50px;
}

.about .about-content ul h4 {
    font-size: 18px;
    font-weight: 600;
}

.about .about-content ul p {
    font-size: 15px;
}

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

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--surface-color);
    width: 64px;
    height: 64px;
    font-size: 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stats .stats-item {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    margin-top: -32px;
    padding: 40px 30px 35px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    border-radius: 4px;
    z-index: 0;
}

.stats .stats-item span {
    font-size: 36px;
    display: block;
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .service-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
}

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

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

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

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

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

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

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

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

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

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
}

.team .team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team .team-member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-member .social a {
    transition: color 0.3s;
    color: var(--heading-color);
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .team-member .social a i {
    line-height: 0;
}

.team .team-member .social a:hover {
    color: var(--accent-color);
}

.team .team-member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .team-member .member-info {
    padding: 25px 15px;
    text-align: center;
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing .pricing-item h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 15px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .pricing-item ul li {
    padding-bottom: 16px;
}

.pricing .pricing-item ul i {
    color: var(--accent-color);
    font-size: 18px;
    padding-right: 4px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
}

.pricing .btn-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    margin: 0 -20px -20px -20px;
    padding: 20px 15px;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .advanced {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

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

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

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.search-wrapper {
    margin-top: 30px;
    max-width: 720px;
}

.search-form {
    display: flex;
    gap: 15px;
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 14px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.search-box i {
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    background: #ffffff;
    color: #0d6efd;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #f1f5ff;
    transform: translateY(-2px);
}

.quick-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: #ffffff;
    color: #0d6efd;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.featured-services .service-card {
    background: #ffffff;
    height: 230px; /* tinggi seperti contoh */
    padding: 30px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* ICON */
.featured-services .icon-box {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-services .icon-box i {
    font-size: 42px;
    color: #1f4cff;
}

/* TITLE */
.featured-services h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* SUBTEXT */
.featured-services p,
.featured-services .counter {
    font-size: 15px;
    color: #6c757d;
}

.stats-luxury {
    padding: 70px 0;
    background: #ffffff;
}

.lux-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.lux-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.18);
}

.lux-icon {
    min-width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 8px 20px rgba(13, 110, 253, 0.35);
}

.lux-icon i {
    font-size: 30px;
    color: #fff;
}

.lux-content h3 {
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    color: #1c1f23;
    line-height: 1.1;
}

.lux-content p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #6c757d;
    letter-spacing: 0.3px;
}

.dataset-terbaru {
    padding: 70px 0;
    background: #fff;
}

/* Header */
.dataset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dataset-header h3 {
    font-weight: 800;
    color: #0f172a;
    position: relative;
}

.dataset-header h3::before {
    content: "";
    width: 6px;
    height: 28px;
    background: #2563eb;
    display: inline-block;
    margin-right: 12px;
    border-radius: 6px;
}

.see-all {
    text-decoration: none;
    font-weight: 500;
    color: #2563eb;
}

/* Slider */
.dataset-slider-wrapper {
    position: relative;
}

.dataset-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 6px 30px;
}

.dataset-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.dataset-card {
    min-width: 320px;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.dataset-card:hover {
    transform: translateY(-6px);
}

/* Content */
.dataset-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 14px 0 8px;
}

.agency {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.meta {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

/* Badge */
.badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
}

.badge.blue {
    background: #2563eb;
}
.badge.green {
    background: #16a34a;
}
.badge.orange {
    background: #f97316;
}
.badge.purple {
    background: #7c3aed;
}

/* Button */
.btn-view {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
}

/* Slider Buttons */
.slide-btn {
    position: absolute;
    top: 40%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.slide-btn.prev {
    left: -18px;
}
.slide-btn.next {
    right: -18px;
}

/* Wrapper supaya tinggi sama semua */
.item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

/* BAGIAN ATAS (GAMBAR) */
.item-top {
    height: 120px; /* tinggi gambar seragam */
    display: flex;
    align-items: flex-start; /* rata atas */
    justify-content: center;
}

.item-top img {
    max-height: 100px;
    object-fit: contain;
}

/* BAGIAN BAWAH (TULISAN) */
.item-bottom {
    min-height: 60px;
    font-size: 13px;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 5; /* maksimal 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BAGIAN Frondent dataset */
/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.dataset-count {
    font-weight: 700;
    font-size: 28px;
    color: #0d3b66;
}

/* Sidebar Filter */
.filter-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-check {
    margin-bottom: 8px;
}

/* BAGIAN  dataset */
/* Dataset Card */
.dataset-card {
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    background: #fff;
}

.dataset-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dataset-badge {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
}

.badge-blue {
    background: #0d3b66;
    color: #fff;
}
.badge-red {
    background: #e76f51;
    color: #fff;
}
.badge-green {
    background: #2a9d8f;
    color: #fff;
}

.search-box {
    border-radius: 50px;
    padding: 12px 20px;
}

.filter-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
}

.form-check-label {
    font-size: 14px;
}

.sidebar-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.filter-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.filter-header {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.filter-body {
    display: none;
}

.filter-body.show {
    display: block;
}

.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.rotate {
    transform: rotate(180deg);
}

.form-check {
    margin-bottom: 6px;
}

.badge {
    font-size: 11px;
}

/* ===== SIDEBAR STYLE ===== */

.filter-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.filter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.filter-card label {
    font-weight: 600;
    margin-bottom: 6px;
}

.filter-card select {
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: 0.3s;
}

.filter-card select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* ===== DATASET CARD STYLE ===== */

.modern-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.modern-card h5 {
    transition: 0.3s;
}

.modern-card:hover h5 {
    color: #0d6efd;
}

/* Badge soft style */
.badge-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 20px;
    padding: 6px 12px;
}

.badge-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 20px;
    padding: 6px 12px;
}

/* Search box elegant */
.search-box {
    border-radius: 50px !important;
    padding-left: 20px;
}

.input-group .btn {
    border-radius: 50px;
}

.definisi-3-baris {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-scale {
    transform: scale(0.3);
    transform-origin: top left;
    width: 111%;
}
.table-compact {
    font-size: 11px;
}
/* =========================================================
   DATASET ELEGANT MODERN
========================================================= */

/* SECTION */
.dataset-terbaru {
    padding: 60px 0;
    background: #fff;
}

/* HEADER */
.dataset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px !important;
}

.dataset-header h3 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
}

.dataset-header .see-all {
    font-size: 14px !important;
    font-weight: 600;
    color: #2563eb;
}

/* SLIDER */
.dataset-slider {
    display: flex !important;
    gap: 18px !important;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 6px 4px 20px;

    scrollbar-width: none;
}

.dataset-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.dataset-slider .dataset-card {
    flex: 0 0 255px !important;

    width: 255px !important;
    min-width: 255px !important;
    max-width: 255px !important;

    background: #ffffff !important;

    border: 1px solid #edf2f7 !important;

    border-radius: 22px !important;

    padding: 20px !important;

    transition: all 0.3s ease;

    position: relative;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* HOVER */
.dataset-slider .dataset-card:hover {
    transform: translateY(-6px);

    border-color: #dbeafe !important;

    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
}

/* BADGE */
.dataset-slider .dataset-card .badge {
    display: inline-flex;
    align-items: center;

    background: #eff6ff !important;
    color: #2563eb !important;

    font-size: 11px !important;
    font-weight: 700;

    padding: 6px 12px !important;

    border-radius: 999px !important;

    margin-bottom: 14px !important;
}

/* TITLE */
.dataset-slider .dataset-card h4 {
    font-size: 16px !important;
    font-weight: 700 !important;

    line-height: 1.5 !important;

    color: #0f172a !important;

    margin-bottom: 12px !important;

    min-height: 48px;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* OPD */
.dataset-slider .dataset-card .agency {
    font-size: 13px !important;

    color: #64748b !important;

    margin-bottom: 10px !important;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* META */
.dataset-slider .dataset-card .meta {
    font-size: 12px !important;

    color: #94a3b8 !important;

    display: flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 18px !important;
}

/* BUTTON */
.dataset-slider .dataset-card .btn-view {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    background: #0f172a !important;
    color: #fff !important;

    border-radius: 14px !important;

    padding: 11px 14px !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    transition: all 0.25s ease;

    text-decoration: none;
}

/* BUTTON HOVER */
.dataset-slider .dataset-card .btn-view:hover {
    background: #2563eb !important;

    transform: translateY(-1px);
}

/* NAV BUTTON */
.slide-btn {
    width: 42px !important;
    height: 42px !important;

    border: none !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;

    transition: 0.2s;
}

.slide-btn:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .dataset-slider {
        gap: 14px !important;
    }

    .dataset-slider .dataset-card {
        flex: 0 0 220px !important;

        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;

        padding: 18px !important;
    }

    .dataset-header h3 {
        font-size: 20px !important;
    }
}
.chart-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.card-header-custom {
    margin-bottom: 20px;
}

.card-header-custom h5 {
    font-weight: 700;
    color: #0f172a;
}

.visitor-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visitor-item {
    background: #f8fafc;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.visitor-item h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: #2563eb;
}

.visitor-item p {
    margin: 0;
    color: #64748b;
}

.latest-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.latest-left h6 {
    margin: 0;
    font-weight: 700;
}

.latest-left small {
    color: #64748b;
}

.latest-right {
    font-size: 13px;
    color: #94a3b8;
}
.mini-card {
    border-radius: 24px;
    padding: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mini-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mini-card p {
    margin: 0;
    opacity: 0.9;
}

.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.purple {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.top-opd-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.update-box {
    background: linear-gradient(90deg, #0f172a, #1e3a8a);
    color: white;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.update-icon {
    font-size: 40px;
}

/* =========================================================
   INDIKATOR MAKRO - COMPACT / MINIMALIS
========================================================= */

.macro-pulse-section {
    --primary: #1769aa;
    --primary-light: #4a90c2;
    --primary-soft: #edf6fc;

    --text: #18324a;
    --text-dark: #102a43;

    --muted: #7890a3;
    --muted-light: #a5b6c3;

    --border: #e5edf3;

    --success: #2e8b62;
    --success-soft: #edf8f2;

    --warning: #c38a22;
    --warning-soft: #fff7e8;

    --danger: #c95555;
    --danger-soft: #fff1f1;

    position: relative;

    overflow: hidden;

    padding: 48px 0 40px;

    background: #ffffff;

    color: var(--text);
}

/* =========================================================
   BACKGROUND DATA
========================================================= */

.macro-data-bg {
    position: absolute;

    z-index: 0;

    pointer-events: none;

    white-space: nowrap;

    user-select: none;

    color: rgba(23, 105, 170, 0.025);

    font-weight: 900;
}

.macro-data-bg-1 {
    top: 30px;

    left: -20px;

    font-size: 72px;

    letter-spacing: 12px;

    transform: rotate(-4deg);
}

.macro-data-bg-2 {
    right: -80px;

    bottom: 100px;

    font-size: 38px;

    letter-spacing: 7px;

    transform: rotate(-4deg);
}

.macro-data-bg-3 {
    left: 15%;

    bottom: 15px;

    font-size: 20px;

    letter-spacing: 8px;

    opacity: 0.5;
}

/* =========================================================
   CONTAINER
========================================================= */

.macro-pulse-container {
    position: relative;

    z-index: 2;

    max-width: 1320px;

    margin: 0 auto;

    padding: 0 18px;
}

/* =========================================================
   HEADER
========================================================= */

.macro-pulse-header {
    margin-bottom: 24px;
}

.macro-eyebrow {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.pulse-dot {
    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #3fa978;

    box-shadow: 0 0 7px rgba(63, 169, 120, 0.35);

    animation: pulseDot 1.7s infinite;
}

.eyebrow-line {
    width: 24px;

    height: 1px;

    background: #d9e3ea;
}

.macro-title-area h2 {
    margin: 8px 0 5px;

    color: var(--text-dark);

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.2px;
}

.macro-title-area h2 span {
    color: var(--primary);
}

.macro-title-area p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}

/* =========================================================
   OVERVIEW — 2 KARTU
========================================================= */

.macro-overview {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 30px;
}

.overview-card {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

    padding: 12px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid var(--border);

    border-radius: 13px;

    box-shadow: 0 4px 16px rgba(24, 50, 74, 0.025);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.overview-card:hover {
    transform: translateY(-2px);

    border-color: #d1e1eb;

    box-shadow: 0 8px 24px rgba(24, 50, 74, 0.06);
}

/* =========================================================
   OVERVIEW ICON
========================================================= */

.overview-icon {
    width: 36px;

    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 14px;
}

.overview-icon.blue {
    color: var(--primary);

    background: #edf6fc;
}

.overview-icon.green {
    color: var(--success);

    background: var(--success-soft);
}

/* =========================================================
   OVERVIEW CONTENT
========================================================= */

.overview-content {
    min-width: 0;
}

.overview-content span {
    display: block;

    overflow: hidden;

    color: #9aabb8;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.8px;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.overview-content strong {
    display: block;

    margin: 2px 0;

    color: var(--text-dark);

    font-size: 20px;

    line-height: 1;

    font-weight: 800;
}

.overview-content small {
    display: block;

    overflow: hidden;

    color: var(--muted);

    font-size: 7px;

    line-height: 1.4;

    white-space: nowrap;

    text-overflow: ellipsis;
}

/* =========================================================
   SECTION LABEL
========================================================= */

.macro-section-label {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 12px;
}

.macro-section-label span {
    color: var(--primary);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.macro-section-label h3 {
    margin: 3px 0 0;

    color: var(--text-dark);

    font-size: 18px;

    font-weight: 800;
}

.macro-scroll-hint {
    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--muted-light);

    font-size: 7px;
}

/* =========================================================
   INDICATOR CARD
========================================================= */

.macro-indicator-card {
    position: relative;

    min-height: 325px;

    padding: 16px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow: 0 6px 22px rgba(24, 50, 74, 0.035);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.macro-indicator-card:hover {
    transform: translateY(-4px);

    border-color: #cbdde9;

    box-shadow: 0 14px 35px rgba(24, 50, 74, 0.08);
}

/* =========================================================
   CARD BACKGROUND
========================================================= */

.macro-indicator-card::before {
    content: "DATA";

    position: absolute;

    right: -18px;

    top: 55px;

    color: rgba(23, 105, 170, 0.025);

    font-size: 68px;

    font-weight: 900;

    transform: rotate(-90deg);

    pointer-events: none;
}

.macro-card-glow {
    position: absolute;

    width: 110px;

    height: 110px;

    right: -65px;

    bottom: -65px;

    border-radius: 50%;

    background: rgba(23, 105, 170, 0.045);

    filter: blur(25px);

    pointer-events: none;
}

/* =========================================================
   CARD TOP
========================================================= */

.macro-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.macro-index {
    color: var(--primary);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.8px;
}

.macro-category {
    display: flex;

    align-items: center;

    gap: 4px;

    color: var(--muted-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

/* =========================================================
   TYPE BADGE
========================================================= */

.macro-type-badge {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    margin-top: 10px;

    padding: 4px 7px;

    border-radius: 5px;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.macro-type-badge.positif {
    color: var(--success);

    background: var(--success-soft);
}

.macro-type-badge.negatif {
    color: var(--warning);

    background: var(--warning-soft);
}

/* =========================================================
   TITLE
========================================================= */

.macro-indicator-title {
    margin-top: 12px;
}

.macro-indicator-title span {
    color: var(--muted-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.macro-indicator-title h4 {
    min-height: 42px;

    margin: 5px 0 0;

    color: var(--text-dark);

    font-size: 13px;

    line-height: 1.4;

    font-weight: 700;
}

/* =========================================================
   VALUE
========================================================= */

.macro-main-value {
    margin-top: 17px;
}

.value-caption {
    color: var(--muted-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.value-number {
    display: flex;

    align-items: baseline;

    gap: 5px;

    margin-top: 3px;

    color: var(--text-dark);

    font-size: 29px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}

.value-number small {
    color: var(--primary);

    font-size: 8px;

    font-weight: 700;
}

.empty-value {
    color: #b7c4ce;
}

/* =========================================================
   TARGET
========================================================= */

.macro-target-area {
    margin-top: 18px;
}

.target-header {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.target-header span {
    color: var(--muted-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.target-header strong {
    color: var(--text);

    font-size: 9px;
}

/* =========================================================
   PROGRESS
========================================================= */

.macro-progress {
    width: 100%;

    height: 3px;

    margin-top: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: #edf1f4;
}

.macro-progress-fill {
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(90deg, var(--primary), var(--primary-light));

    transition: width 0.8s ease;
}

.macro-progress-fill.success {
    background: linear-gradient(90deg, #2e8b62, #64b68e);
}

.macro-progress-fill.warning {
    background: linear-gradient(90deg, #b67c15, #d9aa55);
}

.macro-progress-fill.danger {
    background: linear-gradient(90deg, #c34444, #df7777);
}

/* =========================================================
   PROGRESS META
========================================================= */

.progress-meta {
    display: flex;

    justify-content: space-between;

    margin-top: 5px;
}

.progress-meta span {
    color: var(--muted-light);

    font-size: 7px;
}

.progress-meta strong {
    color: var(--muted);

    font-size: 8px;
}

/* =========================================================
   STATUS
========================================================= */

.macro-status {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 14px;

    padding: 5px 7px;

    border-radius: 6px;

    font-size: 7px;

    font-weight: 800;
}

.macro-status.success {
    color: var(--success);

    background: var(--success-soft);
}

.macro-status.warning {
    color: var(--warning);

    background: var(--warning-soft);
}

.macro-status.danger {
    color: var(--danger);

    background: var(--danger-soft);
}

.macro-status.neutral,
.macro-status.empty {
    color: var(--muted);

    background: #f3f6f8;
}

/* =========================================================
   FOOTER CARD
========================================================= */

.macro-card-footer {
    position: absolute;

    left: 16px;

    right: 16px;

    bottom: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 8px;

    border-top: 1px solid #eef2f5;

    color: var(--muted-light);

    font-size: 7px;

    font-weight: 700;
}

.macro-card-footer div {
    display: flex;

    align-items: center;

    gap: 4px;
}

/* =========================================================
   NAVIGATION
========================================================= */

.macro-nav {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--primary);

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow: 0 5px 15px rgba(24, 50, 74, 0.08);

    cursor: pointer;

    transform: translateY(-50%);

    transition: 0.2s ease;
}

.macro-nav:hover {
    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);
}

.macro-prev {
    left: -4px;
}

.macro-next {
    right: -4px;
}

/* =========================================================
   PAGINATION
========================================================= */

.macro-pagination {
    position: relative !important;

    margin-top: 16px;
}

.macro-pagination .swiper-pagination-bullet {
    width: 4px;

    height: 4px;

    opacity: 0.45;

    background: #aabac7;
}

.macro-pagination .swiper-pagination-bullet-active {
    width: 18px;

    border-radius: 10px;

    opacity: 1;

    background: var(--primary);
}

/* =========================================================
   EMPTY
========================================================= */

.macro-empty-state {
    min-height: 325px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    padding: 20px;

    background: #fafcfd;

    border: 1px dashed #dce6ec;

    border-radius: 16px;

    text-align: center;
}

.empty-icon {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 12px;

    border-radius: 14px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 20px;
}

.macro-empty-state h4 {
    margin: 0 0 4px;

    color: var(--text-dark);

    font-size: 14px;
}

.macro-empty-state p {
    margin: 0;

    color: var(--muted);

    font-size: 9px;
}

/* =========================================================
   FOOT NOTE
========================================================= */

.macro-footer-note {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    color: #9aabb8;

    font-size: 7px;

    font-weight: 700;
}

.macro-footer-note span {
    margin: 0 4px;
}

.macro-live-indicator {
    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--success);

    letter-spacing: 0.7px;
}

.macro-live-indicator > span {
    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #3fa978;

    box-shadow: 0 0 7px rgba(63, 169, 120, 0.35);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 169, 120, 0.35);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(63, 169, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 169, 120, 0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .macro-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .macro-pulse-section {
        padding: 40px 0 35px;
    }

    .macro-pulse-container {
        padding: 0 14px;
    }

    .macro-title-area h2 {
        font-size: 30px;
    }

    .macro-overview {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .macro-section-label {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;
    }

    .macro-scroll-hint {
        display: none;
    }

    .macro-nav {
        display: none;
    }

    .macro-footer-note {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .macro-indicator-card {
        min-height: 325px;
    }

    .macro-data-bg-1 {
        font-size: 48px;
    }

    .macro-data-bg-2 {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .macro-title-area h2 {
        font-size: 27px;
    }

    .overview-card {
        padding: 10px;
    }

    .overview-content strong {
        font-size: 18px;
    }

    .value-number {
        font-size: 27px;
    }
}

/* =========================================================
   DIRECTORY DASHBOARD OPD— SIKONDANG
========================================================= */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;

    --green: #059669;
    --green-soft: #ecfdf5;

    --purple: #7c3aed;
    --purple-soft: #f5f3ff;

    --orange: #ea580c;
    --orange-soft: #fff7ed;

    --text: #172033;
    --text-soft: #64748b;
    --border: #e5e7eb;
}

/* =========================================================
   PAGE
========================================================= */

.directory-page {
    background: #ffffff;
    min-height: 100vh;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.directory-breadcrumb {
    background: #f8fafc !important;
    border-bottom: 1px solid #e5e7eb;
}

.directory-breadcrumb .container {
    padding-top: 14px;
    padding-bottom: 14px;
}

.directory-breadcrumb small {
    color: #64748b;
    font-size: 13px;
}

/* =========================================================
   HERO
========================================================= */

.directory-hero {
    position: relative;
    padding: 55px 0 45px !important;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 235, 0.09),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(37, 99, 235, 0.06),
            transparent 30%
        ),
        #ffffff !important;

    overflow: hidden;
}

.directory-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;

    padding: 7px 12px !important;

    border-radius: 30px;

    background: #eff6ff !important;
    color: #2563eb !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    margin-bottom: 16px;
}

.hero-title {
    margin: 0 0 12px !important;

    color: #172033 !important;

    font-size: 44px !important;
    line-height: 1.15 !important;

    font-weight: 800 !important;
    letter-spacing: -0.8px;
}

.hero-title span {
    color: #2563eb !important;
}

.hero-description {
    max-width: 800px;

    margin: 0 !important;

    color: #64748b !important;

    font-size: 15px !important;
    line-height: 1.75 !important;
}

/* =========================================================
   SEARCH
========================================================= */

.directory-search {
    margin-top: 28px;
    max-width: 850px;
}

.directory-search-form {
    display: flex !important;
    align-items: center;

    gap: 10px;

    padding: 7px !important;

    background: #ffffff !important;

    border: 1px solid #dfe5ec !important;

    border-radius: 15px !important;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07) !important;
}

.directory-search-input {
    position: relative;
    flex: 1;
}

.directory-search-input i {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8 !important;

    font-size: 18px;

    z-index: 2;
}

.directory-search-input input {
    width: 100% !important;
    height: 48px !important;

    padding: 0 15px 0 48px !important;

    border: 0 !important;
    outline: none !important;

    background: transparent !important;

    color: #172033 !important;

    font-size: 14px !important;

    box-shadow: none !important;
}

.directory-search-input input::placeholder {
    color: #94a3b8 !important;
}

.directory-search-btn {
    height: 48px !important;

    padding: 0 23px !important;

    border: 0 !important;

    border-radius: 11px !important;

    background: #2563eb !important;

    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    box-shadow: none !important;
}

.directory-search-btn:hover {
    background: #1d4ed8 !important;
}

/* =========================================================
   STATISTICS
========================================================= */

.directory-statistics {
    margin-top: 34px;
}

.stat-item {
    display: flex !important;
    align-items: center;

    gap: 12px;
}

.stat-icon {
    width: 43px !important;
    height: 43px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px !important;

    font-size: 17px;
}

.stat-icon.opd {
    background: #eff6ff !important;
    color: #2563eb !important;
}

.stat-icon.kecamatan {
    background: #ecfdf5 !important;
    color: #059669 !important;
}

.stat-icon.kelurahan {
    background: #f5f3ff !important;
    color: #7c3aed !important;
}

.stat-icon.luar {
    background: #fff7ed !important;
    color: #ea580c !important;
}

.stat-number {
    display: block;

    color: #172033 !important;

    font-size: 19px !important;
    line-height: 1 !important;

    font-weight: 800 !important;
}

.stat-label {
    display: block;

    margin-top: 5px;

    color: #94a3b8 !important;

    font-size: 11px !important;
    font-weight: 600 !important;
}

/* =========================================================
   CONTENT
========================================================= */

.directory-content {
    background: #f8fafc !important;

    padding: 45px 0 70px !important;
}

/* =========================================================
   CATEGORY
========================================================= */

.category-tabs {
    display: flex !important;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 28px;
}

.category-tab {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 15px !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 10px !important;

    background: #ffffff !important;

    color: #64748b !important;

    font-size: 12.5px !important;
    font-weight: 700 !important;

    transition: all 0.2s ease;
}

.category-tab:hover {
    color: #1e293b !important;

    border-color: #cbd5e1 !important;

    transform: translateY(-1px);
}

.category-tab.active {
    background: #2563eb !important;

    border-color: #2563eb !important;

    color: #ffffff !important;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2) !important;
}

.tab-count {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 21px;

    padding: 0 6px;

    border-radius: 20px;

    background: #f1f5f9 !important;

    color: #64748b !important;

    font-size: 10px !important;
}

.category-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* =========================================================
   FILTER RESULT
========================================================= */

.filter-result {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 25px;

    padding: 15px 18px !important;

    background: #ffffff !important;

    border: 1px solid #e5e7eb !important;

    border-radius: 12px !important;
}

.filter-result-info {
    display: flex !important;
    align-items: center;

    gap: 10px;
}

.filter-result-icon {
    width: 34px !important;
    height: 34px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #eff6ff !important;
    color: #2563eb !important;
}

.filter-result h6 {
    margin: 0;

    color: #172033 !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}

.filter-result small {
    color: #94a3b8 !important;

    font-size: 11px !important;
}

.reset-filter {
    color: #2563eb !important;

    font-size: 12px !important;
    font-weight: 700 !important;
}

/* =========================================================
   GROUP
========================================================= */

.directory-group {
    margin-bottom: 42px;
}

.group-header {
    display: flex !important;

    align-items: center;

    gap: 13px;

    margin-bottom: 17px;
}

.group-header::after {
    content: "";

    height: 1px;

    flex: 1;

    background: #e2e8f0;
}

.group-icon {
    width: 39px !important;
    height: 39px !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;
}

.group-icon.opd {
    background: #eff6ff !important;
    color: #2563eb !important;
}

.group-icon.kecamatan {
    background: #ecfdf5 !important;
    color: #059669 !important;
}

.group-icon.kelurahan {
    background: #f5f3ff !important;
    color: #7c3aed !important;
}

.group-icon.instansi_luar {
    background: #fff7ed !important;
    color: #ea580c !important;
}

.group-title {
    min-width: max-content;
}

.group-title h4 {
    margin: 0 !important;

    color: #172033 !important;

    font-size: 16px !important;

    font-weight: 800 !important;
}

.group-title span {
    display: block;

    margin-top: 3px;

    color: #94a3b8 !important;

    font-size: 10.5px !important;
}

.group-total {
    min-width: max-content;

    padding: 5px 10px;

    border-radius: 20px;

    background: #ffffff !important;

    border: 1px solid #e2e8f0 !important;

    color: #64748b !important;

    font-size: 10.5px !important;

    font-weight: 700 !important;
}

/* =========================================================
   ORGANIZATION CARD
========================================================= */

.organization-card {
    position: relative;

    height: 100%;

    display: flex !important;

    flex-direction: column;

    background: #ffffff !important;

    border: 1px solid #e5e7eb !important;

    border-radius: 14px !important;

    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.organization-card:hover {
    transform: translateY(-4px);

    border-color: #bfdbfe !important;

    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09) !important;
}

.organization-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;
}

.organization-card.opd::before {
    background: #2563eb;
}

.organization-card.kecamatan::before {
    background: #059669;
}

.organization-card.kelurahan::before {
    background: #7c3aed;
}

.organization-card.instansi_luar::before {
    background: #ea580c;
}

/* =========================================================
   CARD MAIN
========================================================= */

.organization-card-main {
    display: flex !important;

    align-items: center;

    gap: 15px;

    padding: 20px 18px 16px !important;

    flex: 1;
}

.organization-logo {
    width: 58px !important;
    height: 58px !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px !important;

    background: #f8fafc !important;

    border: 1px solid #eef2f7 !important;

    overflow: hidden;
}

.organization-logo img {
    max-width: 47px !important;
    max-height: 47px !important;

    width: auto !important;
    height: auto !important;

    object-fit: contain !important;

    transition: transform 0.2s ease;
}

.organization-card:hover .organization-logo img {
    transform: scale(1.07);
}

.organization-info {
    min-width: 0;
}

.organization-name {
    margin: 0 !important;

    color: #172033 !important;

    font-size: 13px !important;

    line-height: 1.45 !important;

    font-weight: 700 !important;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.organization-subtitle {
    margin-top: 5px;

    color: #94a3b8 !important;

    font-size: 10.5px !important;
}

/* =========================================================
   CARD FOOTER
========================================================= */

.organization-card-footer {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    padding: 10px 18px 13px !important;

    border-top: 1px solid #f1f5f9 !important;
}

.org-type {
    display: inline-flex !important;

    align-items: center;

    gap: 5px;

    font-size: 10px !important;

    font-weight: 700 !important;
}

.org-type.opd {
    color: #2563eb !important;
}

.org-type.kecamatan {
    color: #059669 !important;
}

.org-type.kelurahan {
    color: #7c3aed !important;
}

.org-type.instansi_luar {
    color: #ea580c !important;
}

.view-data {
    display: inline-flex !important;

    align-items: center;

    gap: 5px;

    color: #64748b !important;

    font-size: 10.5px !important;

    font-weight: 700 !important;
}

.organization-card:hover .view-data {
    color: #2563eb !important;

    gap: 8px;
}

/* =========================================================
   EMPTY
========================================================= */

.empty-directory {
    padding: 70px 25px !important;

    text-align: center;

    background: #ffffff !important;

    border: 1px dashed #cbd5e1 !important;

    border-radius: 16px !important;
}

.empty-directory-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 17px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f9 !important;

    color: #94a3b8 !important;

    font-size: 27px;
}

.empty-directory h4 {
    margin: 0 0 7px;

    color: #172033 !important;

    font-size: 18px !important;
}

.empty-directory p {
    color: #94a3b8 !important;

    font-size: 12px !important;
}

/* =========================================================
   DATASET
========================================================= */

.latest-dataset {
    padding: 55px 0 75px !important;

    background: #ffffff !important;

    border-top: 1px solid #edf0f4;
}

.latest-header {
    display: flex !important;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 24px;
}

.latest-heading small {
    display: block;

    margin-bottom: 5px;

    color: #2563eb !important;

    font-size: 10px !important;

    font-weight: 800 !important;

    letter-spacing: 0.8px;
}

.latest-heading h3 {
    margin: 0;

    color: #172033 !important;

    font-size: 23px !important;

    font-weight: 800 !important;
}

.latest-heading p {
    margin: 6px 0 0;

    color: #94a3b8 !important;

    font-size: 12px !important;
}

.latest-see-all {
    display: inline-flex !important;

    align-items: center;

    gap: 7px;

    color: #2563eb !important;

    font-size: 12px !important;

    font-weight: 700 !important;
}

/* =========================================================
   DATASET SLIDER
========================================================= */

.dataset-slider-wrapper {
    position: relative;
}

.dataset-slider {
    display: flex !important;

    gap: 16px;

    overflow-x: auto;

    padding: 5px 3px 18px;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.dataset-slider::-webkit-scrollbar {
    display: none;
}

.dataset-card {
    flex: 0 0 285px;

    padding: 19px !important;

    background: #ffffff !important;

    border: 1px solid #e5e7eb !important;

    border-radius: 13px !important;

    transition: all 0.22s ease;
}

.dataset-card:hover {
    transform: translateY(-3px);

    border-color: #bfdbfe !important;

    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
}

.dataset-indicator {
    display: inline-block;

    max-width: 100%;

    padding: 5px 9px;

    background: #eff6ff !important;

    color: #2563eb !important;

    border-radius: 6px;

    font-size: 9.5px !important;

    font-weight: 700 !important;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.dataset-card h4 {
    margin: 13px 0 10px;

    color: #172033 !important;

    font-size: 14px !important;

    line-height: 1.45 !important;

    font-weight: 700 !important;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.dataset-agency {
    margin: 0 0 8px;

    color: #475569 !important;

    font-size: 11px !important;

    font-weight: 700 !important;
}

.dataset-date {
    display: flex !important;

    align-items: center;

    gap: 5px;

    margin: 0 0 15px;

    color: #94a3b8 !important;

    font-size: 10px !important;
}

.dataset-action {
    display: inline-flex !important;

    align-items: center;

    gap: 5px;

    color: #2563eb !important;

    font-size: 10.5px !important;

    font-weight: 700 !important;
}

/* =========================================================
   SLIDER BUTTON
========================================================= */

.slide-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 38px !important;
    height: 38px !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    border: 1px solid #e2e8f0 !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #334155 !important;

    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.1) !important;

    z-index: 5;

    cursor: pointer;
}

.slide-btn:hover {
    background: #2563eb !important;

    color: #ffffff !important;

    border-color: #2563eb !important;
}

.slide-btn.prev {
    left: -19px;
}

.slide-btn.next {
    right: -19px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .directory-hero {
        padding: 42px 0 38px !important;
    }

    .directory-search-form {
        flex-wrap: wrap !important;
    }

    .directory-search-input {
        flex: 1 1 100%;
    }

    .directory-search-btn {
        width: 100% !important;
    }

    .slide-btn.prev {
        left: 5px;
    }

    .slide-btn.next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px !important;
    }

    .category-tab {
        flex: 1;

        min-width: 125px;
    }

    .group-header::after {
        display: none;
    }

    .group-total {
        margin-left: auto;
    }

    .latest-header {
        align-items: flex-start;

        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px !important;
    }

    .category-tab {
        min-width: 0;

        padding: 9px !important;

        font-size: 10.5px !important;
    }

    .category-tab .tab-count {
        display: none !important;
    }

    .organization-card-main {
        padding: 17px 15px 14px !important;
    }

    .organization-logo {
        width: 50px !important;
        height: 50px !important;
    }

    .organization-logo img {
        max-width: 40px !important;
        max-height: 40px !important;
    }

    .dataset-card {
        flex: 0 0 82%;
    }
}
