/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --default-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4fb890; /* 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. */
    --gradien-color: linear-gradient(
        to bottom,
        #4fb890 0%,
        #74da98 100%
    ); /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
    --nav-color: #212529; /* The default color of the main navmenu links */
    --nav-hover-color: #4fb890; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4fb890; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
    --background-color: #f3f9ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #4fb890;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
}

.primary-color {
    background: var(--accent-color) !important;
    border: 1px solid var(--accent-color) !important;
}

.text-primary {
    color: var(--accent-color) !important;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 10px; /* lebar scrollbar */
}

::-webkit-scrollbar-track {
    background: #f0f0f0; /* background track scrollbar */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradien-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #3a9f75 0%, #5fcf83 100%);
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

iframe {
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

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

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

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

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

.header .header-container {
    background: var(--surface-color);
    padding: 10px 20px 2px 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

.circle-icon i {
    color: var(--accent-color);
    font-size: 20px;
}

.header .logo {
    line-height: 1;
    padding-left: 5px;
}

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

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

:root {
    --gradien-color: linear-gradient(270deg, #4fb890, #74da98, #4fb890);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--contrast-color);
    background: var(--gradien-color);
    background-size: 200% 200%;
    font-size: 14px;
    padding: 8px 28px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: background-position 0.5s ease;
    max-height: 45px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background-position: right center;
}

@media (max-width: 1199.99px) {
    .header .header-container {
        padding: 10px 15px;
    }

    .header .d-flex.align-items-center {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        cursor: pointer;
        margin-left: 15px;
    }

    /* Nav container di mobile */
    .navmenu ul {
        display: none;
        position: absolute;
        top: 100%; /* langsung di bawah header */
        left: 0;
        right: 0;
        margin: 0;
        padding: 15px 0;
        background: var(--nav-mobile-background-color);
        border-radius: 6px;
        box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        z-index: 9998;
    }

    /* Active state */
    .mobile-nav-active .navmenu > ul {
        display: flex;
    }

    /* Menu items */
    .navmenu a {
        padding: 12px 20px;
        font-size: 16px;
        color: var(--nav-dropdown-color);
        display: block;
        width: 100%;
    }

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

    /* Button "Contact" biar nggak pecah layout */
    .header .btn-getstarted {
        margin-left: auto;
        padding: 6px 15px;
        font-size: 14px;
    }

    /* Saat menu terbuka, freeze scroll */
    .mobile-nav-active {
        overflow: hidden;
    }

    .header .logo {
        order: 1;
    }

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

    .header .navmenu {
        order: 3;
    }
}

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

    .navmenu ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        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:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu li > a {
        position: relative;
        text-decoration: none;
    }

    .navmenu li > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 2px;
        background: var(--nav-hover-color);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .navmenu li:hover > a::after,
    .navmenu .active::after {
        transform: scaleX(1);
    }

    .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: 1199.99px) {
    .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;
    position: relative;
    border-top: 1px solid #efefef;
}

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

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 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 {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
#hero {
    position: relative;
    background: url("../../assets/img/hero.webp") no-repeat center center/cover;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-section {
    background: #fff;
}

.hero-section h1 {
    font-size: 2rem;
}

.hero-section .contact-info div {
    display: flex;
    align-items: center;
}

.diamond-wrapper {
    position: absolute;
    top: 30%;
    right: 10%;
}

.diamond-hero-bg {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 220px;
    height: 220px;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: rotate(45deg);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
    transition: transform 0.2s linear;
    filter: blur(4px);
}

.diamond-hero-bg:nth-of-type(2) {
    top: 25%;
    right: 20%;
    width: 180px;
    height: 180px;
    opacity: 0.19;
    background: var(--accent-color);
}

.diamond-service-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: rotate(45deg);
    border-radius: 20px;
    opacity: 0.15;
    z-index: 0;
    transition: transform 0.2s linear;
    filter: blur(4px);
}

.diamond-service-bg:nth-child(1) {
    top: 115%;
    left: -60px;
}

.diamond-service-bg:nth-child(2) {
    top: 145%;
    right: 60px;
}

.diamond-contact-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: rotate(45deg);
    border-radius: 20px;
    opacity: 0.15;
    z-index: 0;
    transition: transform 0.2s linear;
    filter: blur(4px);
}

.diamond-contact-bg:nth-child(1) {
    top: 255%;
    left: -60px;
}

.diamond-contact-bg:nth-child(2) {
    top: 295%;
    right: 60px;
    z-index: 0;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

.hero-content,
.hero-image,
.stats-row {
    position: relative;
    z-index: 2;
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding-top: 160px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 95%) 50%,
        color-mix(in srgb, var(--accent-color), transparent 98%) 25%,
        transparent 50%
    );
}

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

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

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

.accent-text {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 500;
}

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

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

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

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

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

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

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

.btn-gradien {
    background: var(--gradien-color);
    background-size: 200% 200%;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-position 1.5s ease;
}

.btn-gradien:hover {
    background-position: right center;
}

.btn-gradien:active {
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.hero .btn-outline-primary:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

@media (max-width: 400px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .btn-gradien {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
        padding-left: 40px !important;
    }
}

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

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

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

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

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

.hero .customers-badge {
    border-radius: 10px;
    animation: float-badge 2.5s ease-in-out infinite;
    will-change: transform;
}

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

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

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

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

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

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

.hero .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    border-radius: 20px;
    padding-bottom: 2rem;
}

.hero .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-right: 1px solid #ddd;
}

.hero .col-lg-3:nth-child(4n) .stat-item {
    border-right: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero .col-lg-3:nth-child(2n) .stat-item {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .hero .stat-item {
        border-right: none;
    }
}

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

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

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

.hero .stat-item .stat-content {
    flex-grow: 1;
    text-align: center;
}

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

.hero .stat-item .stat-content p {
    font-size: 0.875rem;
    margin: 0;
}

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

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

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

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

.stats-row {
    margin-top: 100px;
}

.stat-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: #e6f7f1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #20c997;
}

.stat-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 20px;
        padding: 25px 15px;
    }

    .stat-content h4 {
        font-size: 1.3rem;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    padding-top: 4rem;
}

.about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 992px) {
    .about .about-title {
        font-size: 2rem;
    }
}

.about .about-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
    margin-bottom: 2rem;
}

.about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
}

.about .contact-info .contact-number {
    font-weight: 600;
    margin: 0;
}

.about .image-wrapper {
    position: relative;
}

@media (max-width: 992px) {
    .about .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .main-image {
        margin-left: 0;
    }
}

.about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
    .about .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
}

.about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
    .about .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
}

.about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 48px;
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.stats .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.icon-circle {
    background: #f3f9f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.service-item:hover .icon-circle {
    background: linear-gradient(135deg, #4fb890, #edfffa, #51cf9f);
    background-size: 300% 300%;
    animation: gradientMove 7s ease infinite;
    color: white;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.icon-service {
    width: 32px;
    height: 32px;
}

.content-service h5 {
    font-size: 1.15rem;
    min-height: 50px; /* biar rata kalau panjang */
}

.content-service p {
    font-size: 0.95rem;
    color: #666;
    min-height: 60px;
}

.services .service-card {
    height: 100%;
    padding: 30px;
    background: #f8fdfb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.services .service-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .service-card:hover .read-more {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 28px;
    transition: all 0.3s ease;
    line-height: 1;
}

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

.services .service-card p {
    margin-bottom: 25px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    line-height: 1.6;
}

.services .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.services .service-card .read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(
        in srgb,
        var(--contrast-color),
        transparent 85%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(
        in srgb,
        var(--contrast-color),
        transparent 70%
    );
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

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

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.btn-service {
    background-color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    border-radius: 8px !important;
    color: var(--contrast-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-service:hover {
    background-color: linear-gradient(to bottom, #4fb890 0%, #74da98 100%);
    border: 1px solid var(--accent-color);
}

.btn-outline-service-primary {
    border: 1px solid var(--accent-color);
    border-radius: 8px !important;
    color: var(--bs-secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}
.btn-outline-service-primary:hover {
    background-color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    color: var(--contrast-color);
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn-service:hover {
    background-color: color-mix(
        in srgb,
        var(--accent-color),
        var(--contrast-color) 20%
    );
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

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

.service-details h3 {
    font-size: 26px;
    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);
}

.services .service-item {
    transition: all 0.3s ease;
    background: #f8fdfb;
}

.services .icon {
    color: #4fb890;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.blog .card img {
    transition: transform 0.4s ease;
}

.blog .card:hover img {
    transform: scale(1.05);
}

.blog .card-body {
    padding: 20px;
}

.blog .blog-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog .card-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.blog .card-body p {
    font-size: 0.95rem;
    color: #64748b;
}

.blog .card-body a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog .card-body a:hover {
    gap: 8px;
    color: #0d9488;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 180px;
    }
}

/*--------------------------------------------------------------
# ??? Section
--------------------------------------------------------------*/
.service-item {
    transition: all 0.3s ease;
}

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

.service-item .read-more {
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.service-item .read-more:hover {
    color: #198754;
}

.services {
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.icon-service {
    width: 50px;
    height: 50px;
    color: #198754;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 12px;
    left: 12px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(25, 135, 84, 0.08);
    margin: 0 auto;
    text-align: center;
}

.fab-container {
    position: fixed;
    bottom: 20px;
    right: 12px;
    z-index: 1100;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.fab-main:hover {
    transform: rotate(15deg) scale(1.05);
}

.fab-actions {
    position: absolute;
    bottom: 0;
    right: 70px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;

    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.fab-container.active .fab-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.fab-action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.25s ease;
}

.fab-action:hover {
    transform: scale(1) translateY(-3px);
}

@media (max-width: 991px) {
    .stats-row {
        width: 80%;
        margin: 0 auto;
    }
}

/*--------------------------------------------------------------
# Detail Blog Section
--------------------------------------------------------------*/

.portfolio-section {
    padding: 5rem 10%;
    background: #fff;
}

.portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.portfolio-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.3rem;
}

.portfolio-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.portfolio-btn {
    width: fit-content;
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.portfolio-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-image img:hover {
    transform: scale(1.02);
}

/* Responsif */
@media (max-width: 900px) {
    .portfolio-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-text {
        align-items: center;
    }
}

.portfolio-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.portfolio-item:nth-child(even) .portfolio-text {
    direction: ltr;
}

