/*
* custom.css
* File include item custom only specific css only
******************************************************************************/
/* table borderd */
.table-bordered {
    border: 1px solid #d9d9d9 !important;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #d9d9d9 !important;
}

[data-bs-theme=dark] .table-bordered {
    border: 1px solid var(--bs-border-color) !important;
}

[data-bs-theme=dark] .table-bordered th,
[data-bs-theme=dark] .table-bordered td {
    border: 1px solid var(--bs-border-color) !important;
}

div.dt-search {
    display: none;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 72px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.custom-blocks>* {
    display: block !important;
}

.custom-inline-spacing>* {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .custom-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .custom-only-element class with .custom-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.custom-vertical-spacing>* {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.custom-vertical-spacing.custom-only-element> :first-child {
    margin-top: 0 !important;
}

.custom-vertical-spacing-lg>* {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.custom-vertical-spacing-lg.custom-only-element> :first-child {
    margin-top: 0 !important;
}

.custom-vertical-spacing-xl>* {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.custom-vertical-spacing-xl.custom-only-element> :first-child {
    margin-top: 0 !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
    #dropdown-variation-custom .btn-group .text-truncate {
        width: 254px;
        position: relative;
    }

    #dropdown-variation-custom .btn-group .text-truncate::after {
        position: absolute;
        top: 45%;
        right: 0.65rem;
    }
}

/*
* Layout custom
******************************************************************************/

.layout-custom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-custom-placeholder img {
    width: 900px;
}

.layout-custom-info {
    text-align: center;
    margin-top: 1rem;
}

/*
* Sidebar brand logo
******************************************************************************/

.menu .app-brand.custom {
    height: 64px;
}

.app-brand-logo.custom svg {
    width: 34px;
    height: 24px;
}

.app-brand-text.custom {
    font-size: 1.375rem;
}

#layout-menu .app-brand.custom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#layout-menu .app-brand.custom .app-brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

#layout-menu .app-brand.custom .app-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#layout-menu .app-brand.custom .layout-menu-toggle {
    position: absolute;
    right: 0.75rem;
}

#layout-menu .app-brand-logo .logo-dark-mode {
    display: none;
}

html[data-bs-theme="dark"] #layout-menu .app-brand-logo .logo-dark-mode {
    display: inline-block;
}

html[data-bs-theme="dark"] #layout-menu .app-brand-logo .logo-light-mode {
    display: none;
}

.layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu-toggle .menu-toggle-icon {
    display: none !important;
}

/*
* CSP-safe helpers
******************************************************************************/
.border-style-dashed {
    border-style: dashed !important;
}

.menu-icon-card {
    cursor: pointer;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.menu-icon-card-hover {
    transform: translateY(-4px);
}

.menu-icon-preview {
    height: 60px;
}

.menu-icon-class {
    font-size: 0.7rem;
    font-family: monospace;
}

.menu-icon-col {
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.menu-icon-col-pending {
    opacity: 0;
    transform: translateY(20px);
}

.menu-icon-spinner {
    width: 3rem;
    height: 3rem;
}

.activity-json-key {
    color: #66d9ef;
}

.activity-json-string {
    color: #a6e22e;
}

.activity-json-boolean {
    color: #fd971f;
}

.activity-json-null {
    color: #f92672;
}

.activity-json-number {
    color: #ae81ff;
}

/*
* Frontend custom
******************************************************************************/

:root {
    --bs-primary: #f2a000;
    --frontend-primary: #f2a000;
    --frontend-primary-dark: #d98a00;
    --frontend-primary-light: #ffcb45;
    --frontend-soft-bg: #f8f9fa;
    --frontend-dark-text: #1a1e27;
}

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

.bg-primary {
    background-color: var(--frontend-primary) !important;
}

.btn-primary {
    background-color: var(--frontend-primary) !important;
    border-color: var(--frontend-primary) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--frontend-primary) !important;
    border-color: var(--frontend-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--frontend-primary) !important;
    color: #fff !important;
    border-color: var(--frontend-primary) !important;
}

.bg-label-primary {
    background-color: rgba(242, 160, 0, 0.16) !important;
    color: var(--frontend-primary) !important;
}

.hero-bg-custom {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(22, 28, 45, 0.62) 0%, rgba(38, 48, 72, 0.56) 52%, rgba(72, 88, 122, 0.42) 100%),
        url('../img/bg.png') center/cover no-repeat;
    padding: 120px 0 80px 0;
    color: #fff;
}

.hero-bg-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.hero-bg-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 82% 26%, rgba(160, 192, 255, 0.16) 0%, rgba(160, 192, 255, 0) 22%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.00) 45%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.hero-section {
    min-height: 100vh;
}

.hero-section .container-xxl {
    position: relative;
    z-index: 1;
}

.hero-highlight-text {
    color: #dbe7ff;
}

.hero-illustration {
    max-width: 90%;
}

.about-illustration {
    max-width: 80%;
}

.about-modern-wrap {
    position: relative;
    padding: 2.25rem 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(242, 160, 0, 0.08) 0%, rgba(242, 160, 0, 0) 28%),
        linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
    border: 1px solid rgba(242, 160, 0, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.05);
}

.about-modern-header {
    max-width: 820px;
    margin-bottom: 2rem;
}

.about-modern-description {
    font-size: 1.04rem;
    line-height: 1.95;
}

.about-panel {
    padding: 1.5rem 1.4rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(180deg, rgba(255, 249, 238, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(242, 160, 0, 0.14);
    box-shadow: 0 16px 36px rgba(242, 160, 0, 0.06);
}

.about-panel-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(242, 160, 0, 0.1);
    color: var(--frontend-dark-text);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    color: #5b6372;
    line-height: 1.7;
}

.about-list-item:last-child {
    margin-bottom: 0;
}

.about-empty-text {
    color: #6c7484;
    line-height: 1.75;
}

.section-soft {
    background-color: var(--frontend-soft-bg);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--frontend-primary);
}

.card-service {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--frontend-primary);
}

.service-card-modern {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 240, 1) 100%);
    border-radius: 1.4rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.icon-box-service {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(242, 160, 0, 0.1);
    color: var(--frontend-primary);
    font-size: 30px;
    margin: 0 auto 20px auto;
}

.gallery-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.4rem 1.2rem 1.2rem;
    background: linear-gradient(180deg, rgba(26, 30, 39, 0) 0%, rgba(26, 30, 39, 0.86) 100%);
}

.gallery-card-content {
    color: #fff;
}

.gallery-card-content h5 {
    font-weight: 700;
}

.gallery-card-content p {
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.accordion-modern .accordion-button {
    border-radius: 1rem !important;
    box-shadow: none !important;
    padding: 1.15rem 1.25rem;
}

.faq-card {
    border-radius: 1rem !important;
    overflow: hidden;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: rgba(242, 160, 0, 0.1);
    color: var(--frontend-dark-text);
}

.accordion-modern .accordion-body {
    padding: 0.25rem 1.25rem 1.2rem;
    line-height: 1.8;
}

.empty-section-card {
    padding: 1.4rem 1.6rem;
    border: 1px dashed rgba(242, 160, 0, 0.3);
    border-radius: 1.25rem;
    background: rgba(255, 247, 226, 0.65);
    color: #6c7484;
    text-align: center;
}

@media (max-width: 991.98px) {
    .about-modern-wrap {
        padding: 1.6rem 1.2rem;
        border-radius: 1.5rem;
    }

    .about-modern-header {
        margin-bottom: 1.4rem;
    }
}

.landing-navbar.navbar-active {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-link.active,
.nav-link:hover {
    color: var(--frontend-primary) !important;
}

.frontend-navbar {
    position: relative;
    justify-content: space-between;
    gap: 1rem;
}

.frontend-navbar .navbar-brand {
    margin-right: 0;
}

.frontend-navbar .app-brand-link {
    display: inline-flex;
    align-items: center;
}

.frontend-navbar-logo {
    object-fit: contain;
    max-width: 140px;
    height: auto;
}

.frontend-navbar-collapse {
    flex-grow: 0;
}

.frontend-navbar-nav {
    align-items: center;
    gap: 0.25rem;
}

.frontend-navbar-nav .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.frontend-navbar-nav .nav-link:hover,
.frontend-navbar-nav .nav-link.active {
    background: rgba(242, 160, 0, 0.1);
}

.frontend-footer {
    background:
        radial-gradient(circle at 18% 22%, rgba(242, 160, 0, 0.28) 0%, rgba(242, 160, 0, 0) 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 208, 92, 0.14) 0%, rgba(255, 208, 92, 0) 24%),
        radial-gradient(circle at 50% 120%, rgba(255, 191, 43, 0.18) 0%, rgba(255, 191, 43, 0) 30%),
        linear-gradient(135deg, #1f2432 0%, #23283a 22%, #3d331d 58%, #5c4108 82%, #f2a000 138%);
}

.frontend-footer-overlay {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.18) 100%),
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 18px);
    pointer-events: none;
}

.frontend-footer-inner {
    max-width: auto;
}

.frontend-footer-panel {
    position: relative;
}

.frontend-footer-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 230, 170, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
}

.frontend-footer-header {
    display: flex;
    justify-content: center;
}

.frontend-footer-glow {
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.34;
    pointer-events: none;
}

.frontend-footer-glow-left {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(242, 160, 0, 0.68) 0%, rgba(242, 160, 0, 0) 72%);
}

.frontend-footer-glow-right {
    right: -120px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(255, 199, 71, 0.30) 0%, rgba(255, 199, 71, 0) 74%);
}

.frontend-footer-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.frontend-footer-card {
    padding: 1.1rem 1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.frontend-footer-label {
    color: #ffd986;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.frontend-footer-value {
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.98rem;
    line-height: 1.7;
}

.frontend-footer-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.frontend-footer-link:hover {
    color: #fff;
    opacity: 0.85;
}

.frontend-footer-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frontend-footer-info-copy {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.frontend-footer-map-heading {
    color: #fff3cf;
    letter-spacing: 0.02em;
}

.frontend-footer-map-column {
    display: flex;
    flex-direction: column;
}

.frontend-footer-map-wrap {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18) !important;
    min-height: 320px;
    width: 100%;
}

.frontend-footer-map {
    border: 0;
    display: block;
    width: 100%;
}

.frontend-footer-map-empty {
    min-height: 320px;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(242, 160, 0, 0.10) 0%, rgba(242, 160, 0, 0.03) 100%);
}

.frontend-footer-bottom {
    margin-top: 0.5rem;
}

@media (max-width: 991.98px) {
    .frontend-navbar {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .frontend-navbar-logo {
        max-width: 120px;
    }

    .frontend-navbar-collapse {
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem;
        border: 1px solid rgba(242, 160, 0, 0.12);
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    }

    .frontend-navbar-nav {
        align-items: stretch;
        gap: 0.35rem;
    }

    .frontend-navbar-nav .nav-link {
        padding: 0.9rem 1rem;
        text-align: left;
        border-radius: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .frontend-footer-panel {
        padding: 1.5rem 1rem 1.25rem;
        border-radius: 1.5rem;
    }

    .frontend-footer-logo-wrap {
        padding: 0.85rem 1.2rem;
    }
}

@media (min-width: 992px) {
    .frontend-navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
    }

    .frontend-navbar-nav {
        flex-direction: row;
    }

    .frontend-footer-panel {
        padding: 2rem 1.5rem 1.6rem;
    }

    .frontend-footer-info-column,
    .frontend-footer-map-column {
        min-height: 100%;
    }
}
