/**
* Template Name: Scaffold
* Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    /* --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    /* --heading-font: "Nunito Sans",  sans-serif; */
    /* --nav-font: "Poppins",  sans-serif; */
    --default-font: "Montserrat", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", 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 */
    --background-color2: #fbfcff; /* Background color for the entire website, including individual sections */
    --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #364146; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #009cea; /* 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. */
    --dark-color: #011c2a; /* 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: #828c91; /* The default color of the main navmenu links */
    --nav-hover-color: #009cea; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #009cea; /* 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: #f6f8fa;
    --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .header-social-links {
    padding-left: 15px;
}

.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}

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

.header .header-social-links a i {
    line-height: 0px;
}

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

    .header .header-social-links {
        order: 2;
    }

    .header .navmenu {
        order: 3;
    }
}

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

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

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

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 25px;
        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:last-child a {
        padding-right: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color2);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    /* background-color: color-mix(in srgb, var(--background-color), white 5%); */
    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 h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

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

.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: 30px 0;
}

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

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

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: var(--accent-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

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

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

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

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

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

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    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 {
    background: url(../img/hero-bg.png) right center no-repeat;
    background-color: #00a0c1;
    background-image: url(../img/cover.png);
    width: 100%;
    min-height: 60vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: var(--contrast-color);
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 40px;
}

.about .content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
}

.about .content h2 {
    font-size: 24px;
    font-weight: 700;
}

.about .content p {
    margin: 15px 0 30px 0;
    line-height: 24px;
}

.about .content .btn-read-more {
    color: var(--contrast-color);
    background: var(--accent-color);
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
    font-family: var(--default-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .content .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .content .btn-read-more:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    color: var(--heading-color);
    padding: 15px 0;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575px) {
    .features .nav-link h4 {
        font-size: 16px;
    }
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
    background-color: var(--background-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

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

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-top: 10px;
}

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

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

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

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

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

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

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

.services .service-item:hover {
    transform: translateY(-10px);
    background: #00a0c1;
}

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

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

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

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

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

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

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

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.portfolio .portfolio-content img {
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

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

.portfolio .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

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

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

.call-to-action p {
    color: var(--default-color);
}

.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: 50px;
    transition: 0.5s;
    margin: 10px;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
}

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

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

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

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

.team .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
}

.team .member .member-info {
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

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

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    background-color: var(--background-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    z-index: 10;
}

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

@media (min-width: 992px) {
    .pricing .featured .pricing-item {
        transform: scale(1.02, 1.1);
    }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
    color: var(--contrast-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
    margin-top: 15px;
}

.faq .faq-container .faq-item {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

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

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

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

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

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

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

.faq .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

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

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

.faq .faq-container .faq-active {
    background-color: var(--accent-color);
    transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
    color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 30px;
}

.contact .info-item i {
    font-size: 38px;
    line-height: 0;
    color: var(--accent-color);
}

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

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

.contact .php-email-form {
    /* background: color-mix(in srgb, var(--default-color), transparent 96%); */
    padding: 30px;
    height: 100%;
}

.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: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border: none;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

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

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

.contact .contact-information h3,
.contact .contact-information p {
    color: var(--contrast-color);
}

.contact .contact-information .info i,
.contact .contact-information a i {
    color: var(--contrast-color);
    font-size: 20px;
    margin-right: 15px;
}
.contact .contact-information .info p {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Offcanvas Sidebar
--------------------------------------------------------------*/
.sidebar-toggle {
    color: var(--nav-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    color: var(--nav-hover-color);
    transform: scale(1.1);
}

.offcanvas {
    --bs-offcanvas-width: 350px;
    background: linear-gradient(135deg, #00a0c1 0%, #194b52 100%);
    border: none;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.offcanvas-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.offcanvas-title i {
    font-size: 1.3rem;
}

.btn-close {
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='m.146.146a.5.5 0 0 1 .708 0L8 7.293l7.146-7.147a.5.5 0 0 1 .708.708L8.707 8l7.147 7.146a.5.5 0 0 1-.708.708L8 8.707l-7.146 7.147a.5.5 0 0 1-.708-.708L7.293 8 .146.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.sidebar-content {
    padding: 0;
    height: 100%;
    overflow-y: auto;
}

.sidebar-section {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    margin-top: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    margin-bottom: 0.5rem;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.sidebar-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.sidebar-menu-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-menu-link i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.sidebar-menu-link .bi-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-right: 0;
    margin-left: auto;
}

.sidebar-menu-link[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-submenu-link {
    display: block;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.sidebar-submenu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: rgba(255, 255, 255, 0.3);
}

.sidebar-social {
    display: flex;
    gap: 0.75rem;
}

.sidebar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.sidebar-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.sidebar-contact-item i {
    font-size: 1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Custom scrollbar for sidebar */
.sidebar-content::-webkit-scrollbar {
    width: 4px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .offcanvas {
        --bs-offcanvas-width: 100vw;
    }

    .sidebar-section {
        padding: 1rem;
    }
}

/*--------------------------------------------------------------
# Hero Profil Section
--------------------------------------------------------------*/
.hero-profil {
    padding: 80px 0;
    background-color: #f5f5f5; /* Background abu-abu */
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-profil .min-vh-75 {
    min-height: 75vh;
}

.hero-profil .hero-card-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Blue Ornament Box */
.hero-profil .blue-ornament-box {
    position: absolute;
    top: -50px;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #00a0c1 0%, #007a94 100%);
    z-index: 1;
    min-height: 700px;
}

/* White Content Box */
.hero-profil .white-content-box {
    position: relative;
    top: -20px;
    background: white;
    width: 55%;
    margin-left: 0;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.hero-profil .content-inner {
    padding: 60px 50px;
}

.hero-profil .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-profil .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
}

.hero-profil .hero-description p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.hero-profil .hero-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-profil {
        padding: 60px 0;
    }

    .hero-profil .blue-ornament-box {
        width: 65%;
        min-height: 350px;
    }

    .hero-profil .white-content-box {
        width: 60%;
    }

    .hero-profil .content-inner {
        padding: 50px 40px;
    }

    .hero-profil .hero-title {
        font-size: 2.2rem;
    }

    .hero-profil .hero-description {
        font-size: 0.95rem;
    }
}

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

    .hero-profil .hero-card-container {
        margin: 0 20px;
    }

    .hero-profil .blue-ornament-box {
        width: 55%;
        min-height: 300px;
        top: 20px;
        right: -10px;
    }

    .hero-profil .white-content-box {
        width: 70%;
    }

    .hero-profil .content-inner {
        padding: 40px 30px;
    }

    .hero-profil .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-profil .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-profil {
        padding: 30px 0;
    }

    .hero-profil .hero-card-container {
        margin: 0 15px;
    }

    .hero-profil .blue-ornament-box {
        width: 50%;
        min-height: 250px;
        top: 15px;
        right: -15px;
    }

    .hero-profil .white-content-box {
        width: 80%;
    }

    .hero-profil .content-inner {
        padding: 30px 25px;
    }

    .hero-profil .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-profil .hero-description {
        font-size: 0.85rem;
    }

    .hero-profil .hero-description p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-profil .content-inner {
        padding: 25px 20px;
    }

    .hero-profil .hero-title {
        font-size: 1.6rem;
    }

    .hero-profil .blue-ornament-box {
        width: 45%;
        min-height: 200px;
    }

    .hero-profil .white-content-box {
        width: 85%;
    }
}

/*--------------------------------------------------------------
# Hero Visi Misi Section
--------------------------------------------------------------*/
.hero-visi-misi {
    padding: 80px 0;
    background-color: #f5f5f5; /* Background abu-abu */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-visi-misi .visi-misi-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Blue Ornament Box for Visi Misi */
.hero-visi-misi .blue-ornament-box-visi-misi {
    position: absolute;
    top: -25px;
    right: 0;
    width: 65%;
    height: calc(100% - -45px);
    background: linear-gradient(135deg, #00a0c1 0%, #007a94 100%);
    z-index: 1;
    min-height: 500px;
}

/* Visi Box */
.hero-visi-misi .visi-box {
    position: relative;
    background: white;
    width: 50%;
    margin-left: 0;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Misi Box */
.hero-visi-misi .misi-box {
    position: relative;
    background: white;
    width: 50%;
    margin-left: 0;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.hero-visi-misi .content-inner {
    padding: 40px 45px;
}

.hero-visi-misi .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-visi-misi .section-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--default-color);
}

.hero-visi-misi .section-description p {
    text-align: justify;
    margin-bottom: 1rem;
}

.hero-visi-misi .section-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Visi Misi */
@media (max-width: 991px) {
    .hero-visi-misi {
        padding: 60px 0;
    }

    .hero-visi-misi .blue-ornament-box-visi-misi {
        width: 70%;
        min-height: 450px;
    }

    .hero-visi-misi .visi-box,
    .hero-visi-misi .misi-box {
        width: 55%;
    }

    .hero-visi-misi .content-inner {
        padding: 35px 35px;
    }

    .hero-visi-misi .section-title {
        font-size: 1.8rem;
    }

    .hero-visi-misi .section-description {
        font-size: 0.9rem;
    }
}

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

    .hero-visi-misi .visi-misi-container {
        margin: 0 20px;
    }

    .hero-visi-misi .blue-ornament-box-visi-misi {
        width: 60%;
        min-height: 400px;
        top: 30px;
        right: -10px;
    }

    .hero-visi-misi .visi-box,
    .hero-visi-misi .misi-box {
        width: 70%;
    }

    .hero-visi-misi .content-inner {
        padding: 30px 25px;
    }

    .hero-visi-misi .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-visi-misi .section-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-visi-misi {
        padding: 30px 0;
    }

    .hero-visi-misi .visi-misi-container {
        margin: 0 15px;
    }

    .hero-visi-misi .blue-ornament-box-visi-misi {
        width: 55%;
        min-height: 350px;
        top: 25px;
        right: -15px;
    }

    .hero-visi-misi .visi-box,
    .hero-visi-misi .misi-box {
        width: 80%;
    }

    .hero-visi-misi .content-inner {
        padding: 25px 20px;
    }

    .hero-visi-misi .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero-visi-misi .section-description {
        font-size: 0.8rem;
    }

    .hero-visi-misi .section-description p {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-visi-misi .content-inner {
        padding: 20px 15px;
    }

    .hero-visi-misi .section-title {
        font-size: 1.3rem;
    }

    .hero-visi-misi .blue-ornament-box-visi-misi {
        width: 50%;
        min-height: 300px;
    }

    .hero-visi-misi .visi-box,
    .hero-visi-misi .misi-box {
        width: 85%;
    }
}

/*--------------------------------------------------------------
# Hero Nilai-nilai Section
--------------------------------------------------------------*/
.hero-nilai-nilai {
    padding: 80px 0;
    background-color: #f5f5f5; /* Background abu-abu */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-nilai-nilai .nilai-nilai-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 500px; /* Fixed height for proper positioning */
}

/* Blue Ornament Box for Nilai-nilai */
.hero-nilai-nilai .blue-ornament-box-nilai {
    position: absolute;
    top: -45px;
    left: 40%;
    width: 65%;
    height: 590px;
    background: linear-gradient(135deg, #00a0c1 0%, #007a94 100%);
    z-index: 1;
}

/* Three Cards Layout - Horizontal */
.hero-nilai-nilai .cards-layout-horizontal {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* Individual Card Styling */
.hero-nilai-nilai .nilai-card {
    background: white;
    width: calc(33.333% - 20px);
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-nilai-nilai .card-content {
    padding: 30px 25px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-nilai-nilai .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-nilai-nilai .card-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--default-color);
}

.hero-nilai-nilai .card-description p {
    text-align: justify;
    margin-bottom: 0;
}

/* Responsive Design for Nilai-nilai */
@media (max-width: 991px) {
    .hero-nilai-nilai {
        padding: 60px 0;
    }

    .hero-nilai-nilai .nilai-nilai-container {
        height: 450px;
    }

    .hero-nilai-nilai .blue-ornament-box-nilai {
        left: 15%;
        width: 75%;
        height: 320px;
        top: 50px;
    }

    .hero-nilai-nilai .nilai-card {
        height: 350px;
    }

    .hero-nilai-nilai .card-content {
        padding: 25px 20px;
    }

    .hero-nilai-nilai .card-title {
        font-size: 1.4rem;
    }

    .hero-nilai-nilai .card-description {
        font-size: 0.8rem;
    }
}

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

    .hero-nilai-nilai .nilai-nilai-container {
        margin: 0 20px;
        height: auto;
        min-height: 400px;
    }

    .hero-nilai-nilai .blue-ornament-box-nilai {
        left: 10%;
        width: 80%;
        height: 300px;
        top: 40px;
    }

    .hero-nilai-nilai .cards-layout-horizontal {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .hero-nilai-nilai .nilai-card {
        width: 100%;
        max-width: 400px;
        height: 280px;
        margin: 0 auto;
    }

    .hero-nilai-nilai .card-content {
        padding: 20px 18px;
    }

    .hero-nilai-nilai .card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-nilai-nilai .card-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .hero-nilai-nilai {
        padding: 30px 0;
    }

    .hero-nilai-nilai .nilai-nilai-container {
        margin: 0 15px;
    }

    .hero-nilai-nilai .blue-ornament-box-nilai {
        left: 5%;
        width: 85%;
        height: 250px;
        top: 30px;
    }

    .hero-nilai-nilai .cards-layout-horizontal {
        gap: 15px;
    }

    .hero-nilai-nilai .nilai-card {
        height: 240px;
        max-width: 350px;
    }

    .hero-nilai-nilai .card-content {
        padding: 18px 15px;
    }

    .hero-nilai-nilai .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-nilai-nilai .card-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-nilai-nilai .card-content {
        padding: 15px 12px;
    }

    .hero-nilai-nilai .card-title {
        font-size: 1.1rem;
    }

    .hero-nilai-nilai .blue-ornament-box-nilai {
        left: 0%;
        width: 90%;
        height: 220px;
    }

    .hero-nilai-nilai .nilai-card {
        height: 200px;
    }
}

/*--------------------------------------------------------------
# Konsultasi Pengembangan Organisasi Section
--------------------------------------------------------------*/
.konsultasi-pengembangan {
    padding: 60px 0;
    background-color: var(--background-color);
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar-navigation {
    background: white;
    border-radius: 0;
    box-shadow: none;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid #e9ecef;
}

.sidebar-navigation .nav-header {
    background: var(--accent-color);
    color: white;
    padding: 15px 20px;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-navigation .nav-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.sidebar-navigation .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-navigation .nav-item {
    border-bottom: 1px solid #e9ecef;
}

.sidebar-navigation .nav-item.active {
    border-bottom: 1px solid #e9ecef;
    border-left: 4px solid var(--accent-color);
}

.sidebar-navigation .nav-item:last-child {
    border-bottom: none;
}

.sidebar-navigation .nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    background: white;
}

.sidebar-navigation .nav-link:hover {
    background: #f8f9fa;
    color: var(--default-color);
}

.sidebar-navigation .nav-item.active .nav-link {
    background: white;
    color: var(--default-color);
    border-left-color: var(--accent-color);
    font-weight: 500;
}

/* Content Area */
.content-area {
    padding-left: 30px;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
    text-align: justify;
    margin-bottom: 0;
}

/* Work Scope Section */
.work-scope-section {
    margin-top: 40px;
}

.work-scope-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px;
    text-align: left;
    padding-bottom: 0;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card .card-icon {
    text-align: center;
    margin-bottom: 12px;
}

.service-card .card-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card .card-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.3;
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-subtitle {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
    flex-grow: 1;
    line-height: 1.2;
}

.service-card .card-standard {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
}

/* Different colored cards */
.service-card.light-green {
    background: #f0fff4;
    border-color: #c3f0ca;
}

.service-card.light-green .card-icon i {
    color: #28a745;
}

.service-card.light-green .card-standard {
    background: #28a745;
}

.service-card.light-blue {
    background: #f0f8ff;
    border-color: #b8daff;
}

.service-card.light-blue .card-icon i {
    color: #007bff;
}

.service-card.light-blue .card-standard {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .content-area {
        padding-left: 0;
        margin-top: 30px;
    }

    .sidebar-navigation {
        position: static;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .konsultasi-pengembangan {
        padding: 40px 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-description p {
        font-size: 0.9rem;
    }

    .work-scope-section .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        min-height: 160px;
    }

    .service-card .card-title {
        font-size: 0.9rem;
        min-height: 35px;
    }

    .service-card .card-subtitle {
        font-size: 0.7rem;
    }

    .service-card .card-standard {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .konsultasi-pengembangan {
        padding: 30px 0;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .page-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .work-scope-section .section-title {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 15px 12px;
        min-height: 150px;
    }

    .service-card .card-icon i {
        font-size: 1.8rem;
    }

    .service-card .card-title {
        font-size: 0.85rem;
        min-height: 30px;
    }

    .service-card .card-subtitle {
        font-size: 0.65rem;
    }

    .service-card .card-standard {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .sidebar-navigation .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .sidebar-navigation .nav-header {
        padding: 12px 15px;
    }

    .sidebar-navigation .nav-title {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Pelatihan Public Training Section
--------------------------------------------------------------*/
.pelatihan-public-training {
    padding: 80px 0;
    background-color: var(--background-color);
    min-height: 100vh;
}

/* Training Image Section */
.training-image {
    padding: 20px 0;
}

.image-placeholder .blue-rectangle {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #00a0c1 0%, #007a94 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Training Content */
.training-content {
    padding: 20px 0 20px 40px;
}

.training-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.training-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--default-color);
}

.training-description p {
    text-align: justify;
    margin-bottom: 20px;
}

.training-description p:last-child {
    margin-bottom: 0;
}

/* Training Tabs */
.training-tabs {
    margin-top: 60px;
}

.training-tabs .nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.training-tabs .nav-tabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--default-color);
    font-weight: 500;
    padding: 15px 25px;
    margin-right: 10px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.training-tabs .nav-tabs .nav-link:hover {
    color: var(--accent-color);
    border-bottom-color: color-mix(
        in srgb,
        var(--accent-color),
        transparent 50%
    );
}

.training-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: transparent;
}

.training-tabs .tab-content {
    min-height: 200px;
}

/* Join the Team Section */
.join-team-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 60px 40px;
    margin-top: 80px;
}

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

.join-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.join-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
}

.join-description p {
    margin-bottom: 15px;
}

.join-description p:last-child {
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.video-player:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: #667eea;
    margin-left: 4px;
}

.video-player:hover .play-button {
    background: white;
    transform: scale(1.1);
}

/* Floating Profiles */
.floating-profiles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.profile-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-1 {
    top: 20px;
    right: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.profile-2 {
    top: 50%;
    right: -10px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.profile-3 {
    bottom: 40px;
    right: 20px;
    background: linear-gradient(135deg, #45b7d1, #3182ce);
}

.profile-4 {
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.profile-5 {
    top: 50%;
    left: -15px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.profile-6 {
    bottom: 30px;
    left: 40px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* Responsive Design */
@media (max-width: 991px) {
    .training-content {
        padding: 40px 0 20px 20px;
    }

    .training-title {
        font-size: 2.2rem;
    }

    .join-team-section {
        padding: 50px 30px;
        margin-top: 60px;
    }

    .join-content {
        padding-right: 20px;
    }

    .join-title {
        font-size: 1.8rem;
    }

    .video-player {
        width: 250px;
        height: 250px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button i {
        font-size: 1.8rem;
    }
}

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

    .training-content {
        padding: 30px 0 20px 0;
        margin-top: 30px;
    }

    .training-title {
        font-size: 2rem;
    }

    .training-description {
        font-size: 0.95rem;
    }

    .training-tabs {
        margin-top: 40px;
    }

    .training-tabs .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .join-team-section {
        padding: 40px 25px;
        margin-top: 50px;
    }

    .join-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .join-title {
        font-size: 1.6rem;
    }

    .join-description {
        font-size: 0.95rem;
    }

    .video-player {
        width: 220px;
        height: 220px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .image-placeholder .blue-rectangle {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .pelatihan-public-training {
        padding: 40px 0;
    }

    .training-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .training-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .training-tabs .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin-right: 5px;
    }

    .join-team-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .join-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .join-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .video-player {
        width: 180px;
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 1.3rem;
    }

    .profile-dot {
        width: 40px;
        height: 40px;
    }

    .image-placeholder .blue-rectangle {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .training-title {
        font-size: 1.6rem;
    }

    .join-title {
        font-size: 1.3rem;
    }

    .training-description,
    .join-description {
        font-size: 0.85rem;
    }

    .video-player {
        width: 160px;
        height: 160px;
    }

    .profile-dot {
        width: 35px;
        height: 35px;
    }

    .image-placeholder .blue-rectangle {
        height: 220px;
    }
}
