/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Open Sans", 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: "Roboto", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #39a8de; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(
        255,
        255,
        255,
        0.55
    ); /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* 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: #39a8de; /* 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: #f4f7f6;
    --surface-color: #ffffff;
}

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

.grey-background {
    background-color: rgba(57, 168, 222, 0.2);
}

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

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

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

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

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

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

.header .logo img {
    max-height: 68px;
    margin-right: 4px;
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.95);
    --heading-color: #3c3c3c;
    --nav-color: #3c3c3c;
    --nav-hover-color: #3c3c3c;
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    background: url("/assets/img/footer-bg.jpg") top center no-repeat;
    background-size: cover;
    font-size: 14px;
    position: relative;
}

.footer .container {
    position: relative;
}

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

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

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

.footer .footer-about .logo img {
    max-height: 80px;
    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: 50px;
    height: 50px;
    border-radius: 5px;
    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-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: 8px;
    font-size: 13px;
}

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

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

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

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

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #25d366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    overflow: visible;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

.whatsapp-float i {
    line-height: 0;
}

/* Tooltip Text */
.whatsapp-float .tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 60px;
    bottom: 50%;
    transform: translateY(50%);
    background-color: #1ebe5d;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Show on hover */
.whatsapp-float:hover .tooltip-text {
    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 {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative;
}

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

.page-title h1 {
    font-size: 56px;
    font-weight: 500;
    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: 500;
}

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

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

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

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

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

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

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

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

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

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

.hero .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 768px), (max-height: 480px) {
    .hero .info {
        padding: 100px 50px 60px 50px;
    }
}

.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

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

.hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
}

.hero .info .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
    background: var(--accent-color);
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
}

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

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

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

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

.services .card-item .card-bg {
    min-height: 300px;
    position: relative;
}

.services .card-item .card-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.services .card-item .card-body {
    padding: 30px;
}

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

.services .card-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.services .text-truncate-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Batasi maksimal 4 baris, bisa kamu ubah */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services .btn-get-started,
.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;
}

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

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .features-image {
    position: relative;
    min-height: 400px;
}

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

.about h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

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

.about .icon-box {
    margin-top: 50px;
}

.about .icon-box i {
    color: var(--accent-color);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.about .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

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

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

.about .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

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

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
}

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

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

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.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(--accent-color), transparent 60%);
    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: 15px 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: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

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

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Visi Misi Section
--------------------------------------------------------------*/

.visi-misi .visi-misi-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.visi-misi .visi-misi-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.visi-misi .section-title {
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 1px solid #999;
    line-height: 1.3;
    padding-bottom: 10px;
}

.visi-misi .section-title span {
    color: var(--accent-color);
}

.visi-misi .section-text {
    font-size: 17px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 30px;
}

.visi-misi .misi-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: justify;
    font-size: 17px;
    font-weight: normal;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stats-counter .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats-counter .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}

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

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .features-image {
    position: relative;
    min-height: 400px;
}

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

.about-2 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-2 .icon-box {
    margin-top: 30px;
}

.about-2 .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.about-2 .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.about-2 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

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

.service-details .btn-get-started {
    color: var(--default-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.service-details .btn-get-started:hover {
    background: var(--accent-color);
}

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

.project-details .swiper-wrapper {
    height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

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

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

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

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.project-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

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

.project-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.project-details .portfolio-description p {
    padding: 0;
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

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

.project-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

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

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.gallery .isotope-filters li {
    cursor: pointer;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery .isotope-filters li:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.gallery .isotope-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 576px) {
    .gallery .isotope-filters li {
        margin-bottom: 5px;
    }
}

.gallery .gallery-item {
    margin-bottom: 30px;
}

.gallery .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.gallery .gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery .gallery-card:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-img img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

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

.gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery .gallery-info {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery .gallery-info h4 {
    color: var(--contrast-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery .gallery-info p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    font-size: 14px;
    margin-bottom: 15px;
}

.gallery .gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery .gallery-link i {
    font-size: 20px;
}

.gallery .gallery-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .gallery .gallery-info h4 {
        font-size: 16px;
    }

    .gallery .gallery-info p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .gallery .isotope-filters li {
        padding: 6px 14px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery .gallery-overlay {
        padding: 15px;
    }

    .gallery .gallery-info h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .gallery .gallery-info p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .gallery .gallery-link {
        width: 35px;
        height: 35px;
    }

    .gallery .gallery-link i {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    overflow-x: hidden;
    padding: 40px 0;
    /* Responsive adjustments */
}

.clients .clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
    margin-bottom: 20px;
}

.clients .clients-track {
    display: flex;
    width: max-content;
    animation-duration: 120s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
    animation-name: scroll-left;
}

.clients .clients-track.track-2 {
    animation-name: scroll-right;
}

.clients .clients-track:hover {
    animation-play-state: paused;
}

.clients .clients-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clients .clients-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--default-color), transparent 96%),
        transparent
    );
    transition: 0.5s;
}

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

.clients .clients-slide:hover::before {
    left: 100%;
}

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

.clients .clients-slide img {
    max-width: 80%;
    max-height: 60%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

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

@media (max-width: 991px) {
    .clients .clients-slide {
        width: 180px;
        height: 90px;
        margin: 0 20px;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1760px);
        }
    }

    @keyframes scroll-right {
        0% {
            transform: translateX(-1760px);
        }

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

@media (max-width: 767px) {
    .clients .clients-slide {
        width: 150px;
        height: 75px;
        margin: 0 15px;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1440px);
        }
    }

    @keyframes scroll-right {
        0% {
            transform: translateX(-1440px);
        }

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

/*--------------------------------------------------------------
# Clients-Page Section
--------------------------------------------------------------*/
.clients-page .clients-wrap {
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients-page .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.clients-page .client-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .clients-page .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.clients-page .client-logo:hover img {
    transform: scale(1.1);
}

#client-tooltip {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 5px;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
    overflow: hidden;
}

.gallery-slider .gallery-container {
    padding: 20px 0 40px;
    position: relative;
}

.gallery-slider .swiper-wrapper {
    height: auto !important;
    align-items: center;
    padding: 30px 0;
}

.gallery-slider .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-slider .gallery-img img {
    transition: transform 0.6s ease;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
    color: var(--contrast-color);
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

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

.gallery-slider .gallery-img:hover .gallery-overlay {
    opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
    transform: scale(1);
}

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

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--accent-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: var(--accent-color);
    background: var(--surface-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
    opacity: 0.9;
}

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

@media (max-width: 991px) {
    .gallery-slider .gallery-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 767px) {
    .gallery-slider .swiper-wrapper {
        padding: 15px 0;
    }

    .gallery-slider .gallery-img .gallery-overlay i {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-us .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.why-us .stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .why-us .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.why-us .stat-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.why-us .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.25rem;
}

.why-us .about-image {
    position: relative;
}

.why-us .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .about-image .experience-badge .experience-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.why-us .about-image .experience-badge .experience-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .why-us .about-image {
        margin-top: 3rem;
    }

    .why-us .about-image .experience-badge {
        bottom: 15px;
        left: 15px;
        padding: 1rem;
    }

    .why-us .about-image .experience-badge .experience-number {
        font-size: 1.5rem;
    }

    .why-us .about-image .experience-badge .experience-text {
        font-size: 0.8rem;
    }
}

.why-us .why-choose-section {
    margin-top: 5rem;
}

.why-us .why-choose-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-us .why-choose-section > .row > .col-lg-8 > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
    .why-us .why-choose-section {
        margin-top: 3rem;
    }

    .why-us .why-choose-section h3 {
        font-size: 1.8rem;
    }
}

.why-us .feature-card {
    background: var(--surface-color);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.why-us .feature-icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.why-us .feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-us .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-us .feature-card {
        padding: 2rem 1rem;
    }

    .why-us .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-us .feature-card h4 {
        font-size: 1.2rem;
    }
}

/* --------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .card {
    background-color: var(--surface-color, #fff);
    color: var(--default-color, #212529);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.projects .card:hover {
    transform: translateY(-5px);
}

.projects .card .card-img {
    height: 220px; /* Atur tinggi gambar sesuai desain */
    overflow: hidden;
}

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

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

.projects .card h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 15px 20px 5px 20px;
}

.projects .card a {
    color: var(--heading-color, #1e1e1e);
    text-decoration: none;
}

.projects .card a:hover {
    color: var(--accent-color, #0d6efd);
}

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

.projects .card .stars i {
    color: #ffc107;
}

.projects .card p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.projects .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .card {
    background-color: var(--surface-color, #fff);
    color: var(--default-color, #212529);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.products .card:hover {
    transform: translateY(-5px);
}

.products .card .card-img {
    height: 220px; /* Atur tinggi gambar sesuai desain */
    overflow: hidden;
}

.products .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

.products .card h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 15px 20px 5px 20px;
}

.products .card a {
    color: var(--heading-color, #1e1e1e);
    text-decoration: none;
}

.products .card a:hover {
    color: var(--accent-color, #0d6efd);
}

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

.products .card .stars i {
    color: #ffc107;
}

.products .card p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.products .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

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

.product-details .btn-get-started {
    color: var(--default-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.product-details .btn-get-started:hover {
    background: var(--accent-color);
}

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

.project-details .swiper-wrapper {
    height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

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

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

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

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.project-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

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

.project-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.project-details .portfolio-description p {
    padding: 0;
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

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

.project-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background-color: transparent;
}

.call-to-action .container {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 15px);
}

.call-to-action .container img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.call-to-action .container:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container .content {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-to-action p {
    color: var(--default-color);
    margin-bottom: 20px;
}

.call-to-action .play-btn {
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 60%) 52%
    );
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

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

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

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

/*--------------------------------------------------------------
# Visi Misi Section
--------------------------------------------------------------*/

.visi-misi .services-container {
    margin-bottom: 60px;
}

.visi-misi .services-container .service-item {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--accent-color), transparent 92%);
    transition: all 0.4s ease;
    height: 100%;
}

.visi-misi .services-container .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.visi-misi .services-container .service-item:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.visi-misi .services-container .service-item:hover .service-link {
    color: var(--accent-color);
}

.visi-misi .services-container .service-item:hover .service-link i {
    transform: translateX(5px);
}

.visi-misi .services-container .service-item .service-icon {
    flex: 0 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.visi-misi .services-container .service-item .service-content {
    padding: 30px;
    position: relative;
}

.visi-misi .services-container .service-item .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 90%);
    line-height: 1;
    opacity: 0.5;
    z-index: 1;
}

.visi-misi .services-container .service-item .service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    z-index: 2;
}

.visi-misi .services-container .service-item .service-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    position: relative;
    z-index: 2;
}

.visi-misi .services-container .service-item .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.visi-misi .services-container .service-item .service-link i {
    transition: transform 0.3s ease;
}

.visi-misi .cta-wrapper .cta-box {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 15%),
        color-mix(in srgb, var(--accent-color), transparent 5%)
    );
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.visi-misi .cta-wrapper .cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/img/bg/dotted-world-1.webp");
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.visi-misi .cta-wrapper .cta-box .cta-image {
    position: relative;
    z-index: 2;
}

.visi-misi .cta-wrapper .cta-box .cta-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .visi-misi .cta-wrapper .cta-box .cta-image img {
        margin-bottom: 30px;
    }
}

.visi-misi .cta-wrapper .cta-box .cta-content {
    position: relative;
    z-index: 2;
}

.visi-misi .cta-wrapper .cta-box .cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.visi-misi .cta-wrapper .cta-box .cta-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.visi-misi .cta-wrapper .cta-box .cta-content .primary-btn {
    display: inline-block;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.visi-misi .cta-wrapper .cta-box .cta-content .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .visi-misi .cta-wrapper .cta-box .cta-content {
        text-align: center;
    }
}

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

    .visi-misi .services-container .service-item {
        flex-direction: column;
    }

    .visi-misi .services-container .service-item .service-icon {
        flex: 0 0 auto;
        height: 80px;
        width: 100%;
    }

    .visi-misi .cta-wrapper .cta-box {
        padding: 30px 20px;
    }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .process-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.steps .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 2.5rem;
}

.steps .process-item:last-child {
    padding-bottom: 0;
}

.steps .process-item .content {
    width: 100%;
    position: relative;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--accent-color), transparent 95%),
        var(--surface-color)
    );
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps .process-item .content:hover {
    transform: translateX(10px);
    box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps .process-item .content:hover .step-icon {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 15%),
        var(--accent-color)
    );
    transform: rotate(10deg);
}

.steps .process-item .content:hover .step-number {
    transform: translateX(-5px);
    opacity: 1;
}

.steps .process-item .step-number {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    opacity: 0.2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.steps .process-item .card-body {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.steps .process-item .step-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps .process-item .step-icon i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.steps .process-item .step-content h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.steps .process-item .step-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.steps .process-item .arrow {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    margin: 1rem 0;
    width: 100px;
    height: 100px;
    opacity: 0.7;
}

@media (max-width: 767.98px) {
    .steps .process-container {
        padding: 1rem 0;
    }

    .steps .process-item {
        padding-bottom: 2rem;
    }

    .steps .process-item .content {
        border-width: 1px;
    }

    .steps .process-item .content:hover {
        transform: translateY(-5px);
    }

    .steps .process-item .step-number {
        font-size: 3rem;
        left: 50%;
        top: -1.5rem;
        transform: translateX(-50%);
    }

    .steps .process-item .step-number:hover {
        transform: translateX(-50%);
    }

    .steps .process-item .card-body {
        padding: 2rem 1.5rem 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .steps .process-item .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .steps .process-item .step-icon i {
        font-size: 1.75rem;
    }

    .steps .process-item .step-content h3 {
        font-size: 1.25rem;
    }

    .steps .process-item .arrow {
        height: 60px;
        margin: 0.5rem 0;
    }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
    position: relative;
}

.featured-services .services-content .subtitle {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-services .services-content h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .featured-services .services-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-services .services-content h2 {
        font-size: 28px;
    }
}

.featured-services .services-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-services .services-content .btn-consultation {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.featured-services .services-content .btn-consultation span {
    margin-right: 8px;
}

.featured-services .services-content .btn-consultation i {
    transition: transform 0.3s ease;
}

.featured-services .services-content .btn-consultation:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.featured-services .services-content .btn-consultation:hover i {
    transform: translateX(5px);
}

.featured-services .services-image {
    position: relative;
    height: 380px;
    display: flex;
    justify-content: flex-end;
}

.featured-services .services-image img {
    position: relative;
    z-index: 2;
    max-height: 100%;
    object-fit: cover;
}

.featured-services .services-image .shape-circle {
    position: absolute;
    right: -30px;
    top: -30px;
    height: 180px;
    width: 180px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    z-index: 1;
}

.featured-services .services-image .shape-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    z-index: 1;
    animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
    .featured-services .services-image {
        margin-top: 30px;
        height: 300px;
        justify-content: center;
    }
}

.featured-services .services-slider {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
}

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

.featured-services .service-card {
    background-color: var(--surface-color);
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-services .service-card .icon-box {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.featured-services .service-card .icon-box i {
    font-size: 30px;
    color: var(--contrast-color);
    transition: all 0.4s;
}

.featured-services .service-card .arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: var(--accent-color);
    background-color: var(--surface-color);
    border-radius: 50%;
    transform: rotate(-45deg);
    position: absolute;
    right: -50px;
    top: -50px;
    transition: all 0.4s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-services .service-card .content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.featured-services .service-card .content h4 a {
    color: var(--heading-color);
    transition: all 0.4s;
}

.featured-services .service-card .content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.featured-services .service-card .content .service-number {
    position: relative;
    padding-left: 76px;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s;
}

.featured-services .service-card .content .service-number::after {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    height: 1px;
    width: 70px;
    background-color: var(--accent-color);
    transition: all 0.4s;
}

.featured-services .service-card:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

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

.featured-services .service-card:hover .icon-box i {
    color: var(--accent-color);
}

.featured-services .service-card:hover .arrow-link {
    top: 16px;
    right: 16px;
    background-color: var(--contrast-color);
}

.featured-services .service-card:hover .content h4 a {
    color: var(--contrast-color);
}

.featured-services .service-card:hover .content p {
    color: var(--contrast-color);
}

.featured-services .service-card:hover .content .service-number {
    color: var(--contrast-color);
    padding-left: 0;
}

.featured-services .service-card:hover .content .service-number::after {
    background-color: var(--contrast-color);
    left: 30px;
}

.featured-services .swiper-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.featured-services .swiper-navigation button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    height: 56px;
    width: 56px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 20px;
    transition: all 0.4s;
    margin-right: 10px;
}

.featured-services .swiper-navigation button:last-child {
    margin-right: 0;
}

.featured-services .swiper-navigation button:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

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

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

/*--------------------------------------------------------------
# Speaker Details 2 Section
--------------------------------------------------------------*/
.speaker-details-2 .speaker-header {
    position: relative;
}

.speaker-details-2 .speaker-header .speaker-image {
    position: relative;
    display: inline-block;
}

.speaker-details-2 .speaker-header .speaker-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
    border: 6px solid var(--surface-color);
}

.speaker-details-2 .speaker-header .speaker-image .keynote-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #4f46e5 30%)
    );
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-details-2 .speaker-header .speaker-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.speaker-details-2 .speaker-header .speaker-title {
    font-size: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.speaker-details-2 .speaker-header .company-info .company-name {
    background: var(--surface-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.speaker-details-2 .speaker-header .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.speaker-details-2 .speaker-header .social-links .social-link {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.speaker-details-2 .speaker-header .social-links .social-link:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(54, 144, 231, 0.25);
}

.speaker-details-2 .speaker-quote {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.speaker-details-2 .speaker-quote .quote-content {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.6;
    position: relative;
}

.speaker-details-2 .speaker-quote .quote-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
    font-family: serif;
}

.speaker-details-2 .speaker-bio .bio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.speaker-details-2 .speaker-bio .bio-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 1.5rem;
}

.speaker-details-2 .speaker-bio .bio-text:last-child {
    margin-bottom: 0;
}

.speaker-details-2 .speaker-sessions .sessions-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.speaker-details-2 .speaker-sessions .sessions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.speaker-details-2 .speaker-sessions .session-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details-2 .speaker-sessions .session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.speaker-details-2 .speaker-sessions .session-card .session-type {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.speaker-details-2 .speaker-sessions .session-card .session-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.speaker-details-2 .speaker-sessions .session-card .session-description {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    line-height: 1.6;
}

.speaker-details-2 .speaker-sessions .session-card .session-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

@media (max-width: 768px) {
    .speaker-details-2 .speaker-sessions .session-card .session-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

.speaker-details-2 .speaker-sessions .session-card .session-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-details-2 .speaker-sessions .session-card .session-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.speaker-details-2 .speaker-sessions .session-card .session-detail i {
    color: var(--accent-color);
    font-size: 16px;
}

.speaker-details-2 .speaker-sessions .session-card .session-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.speaker-details-2 .speaker-sessions .session-card .session-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54, 144, 231, 0.3);
}

.speaker-details-2 .speaker-actions .btn-action {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.speaker-details-2 .speaker-actions .btn-action.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.speaker-details-2 .speaker-actions .btn-action.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.speaker-details-2 .speaker-actions .btn-action.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

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

@media (max-width: 768px) {
    .speaker-details-2 .speaker-header .speaker-name {
        font-size: 2rem;
    }

    .speaker-details-2 .speaker-header .speaker-image img {
        width: 150px;
        height: 150px;
    }

    .speaker-details-2 .speaker-header .social-links {
        gap: 10px;
    }

    .speaker-details-2 .speaker-header .social-links .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .speaker-details-2 .speaker-quote {
        padding: 25px;
    }

    .speaker-details-2 .speaker-quote .quote-content {
        font-size: 1.1rem;
    }

    .speaker-details-2 .speaker-actions .btn-action {
        padding: 12px 20px;
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .speaker-details-2 .speaker-actions .btn-action.me-3 {
        margin-right: 0 !important;
    }
}
