:root {
    --primary: #cbe32d;
    /* Lime green theme */
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #ffffff;
    --bg-page: #f8fafc;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    overflow-x: hidden;
}
html{
    overflow-x: hidden; 
}

body.page-home {
    padding-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}
p{
    color: #666666 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.app-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0px;
    width: 100%;
    z-index: 100;
    box-shadow: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.app-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 10px 0px;
}

.app-header .navbar-toggler {
    color: #ffffff;
}

.app-header .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.app-header.is-scrolled .navbar-toggler {
    color: #111827;
}

.app-header.is-scrolled .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,24,39,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
}

.logo a {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* -------------------------------------------------------------------------
   Full-screen menu overlay (modal)
   ------------------------------------------------------------------------- */
.full-site-menu-modal .modal-content {
    border: none;
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    font-family: "Kanit", sans-serif;
}

.full-site-menu {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.25rem 1.5rem 1.75rem;
}

@media (min-width: 992px) {
    .full-site-menu {
        padding: 1.75rem 2.5rem 2rem;
    }
}

.full-site-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 1rem;
}

.full-site-menu__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.full-site-menu__logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.full-site-menu__close {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.5rem;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Kanit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

.full-site-menu__close:hover,
.full-site-menu__close:focus-visible {
    color: #ffffff;
    outline: none;
}

.full-site-menu__close:focus-visible {
    box-shadow: 0 0 0 2px #93c5fd;
    border-radius: 4px;
}

.full-site-menu__close-x {
    color: #7dd3fc;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    margin-top: -0.1em;
}

.full-site-menu__body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    min-height: 0;
}

.full-site-menu__nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.full-site-menu__nav-stack {
    width: 100%;
}

.full-site-menu__primary {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
    .full-site-menu__primary {
        gap: 1rem 1.75rem;
    }
}

@media (min-width: 992px) {
    .full-site-menu__primary {
        gap: 1.25rem 2.25rem;
    }
}

@media (max-width: 575px) {
    .full-site-menu__primary {
        flex-direction: column;
        align-items: center;
    }
}

.full-site-menu__primary-item {
    flex: 0 0 auto;
    text-align: center;
}

.full-site-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.35rem 0.25rem;
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.15rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1.2;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.full-site-menu__link:hover,
.full-site-menu__link:focus-visible {
    color: var(--primary);
    opacity: 1;
}

.full-site-menu__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(203, 227, 45, 0.5);
    border-radius: 4px;
}

.full-site-menu__primary-item.is-active > .full-site-menu__link:not(.full-site-menu__service-toggle) {
    color: var(--primary);
}

.full-site-menu__primary-item.is-active > .full-site-menu__service-toggle {
    color: var(--primary);
}

.full-site-menu__chevron {
    font-size: 0.45em;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.full-site-menu__service-toggle[aria-expanded="true"] .full-site-menu__chevron {
    transform: rotate(-180deg);
}

.full-site-menu__service-panel {
    width: 100%;
    max-width: 52rem;
    margin: 1.25rem auto 0;
}

.full-site-menu__service-inner {
    padding: 1.25rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 1.25rem 2rem;
}

@media (min-width: 768px) {
    .full-site-menu__service-inner {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.5rem 1.25rem 1.75rem;
    }
}

.full-site-menu__service-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.65rem;
}

a.full-site-menu__service-label--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.full-site-menu__service-label--link:hover,
a.full-site-menu__service-label--link:focus-visible {
    color: var(--primary);
}

a.full-site-menu__service-label--link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(203, 227, 45, 0.45);
    border-radius: 4px;
}

a.full-site-menu__service-label--link.is-active {
    color: var(--primary);
}

.full-site-menu__sublink {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.full-site-menu__sublink:hover,
.full-site-menu__sublink:focus-visible {
    color: var(--primary);
}

.full-site-menu__sublink:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(203, 227, 45, 0.45);
    border-radius: 4px;
}

.full-site-menu__sublink.is-active {
    color: var(--primary);
    font-weight: 500;
}

.full-site-menu__footer {
    flex-shrink: 0;
    font-family: "Kanit", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.5rem;
}

.full-site-menu-modal .modal-backdrop {
    background-color: #000000;
}

/* Full menu: staggered entrance for primary <li> when modal opens */
@keyframes full-site-menu-item-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes full-site-menu-subitem-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#fullSiteMenu.show .full-site-menu__anim-item {
    opacity: 0;
    animation: full-site-menu-item-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#fullSiteMenu.show .full-site-menu__anim-item:nth-child(1) {
    animation-delay: 0.05s;
}

#fullSiteMenu.show .full-site-menu__anim-item:nth-child(2) {
    animation-delay: 0.11s;
}

#fullSiteMenu.show .full-site-menu__anim-item:nth-child(3) {
    animation-delay: 0.17s;
}

#fullSiteMenu.show .full-site-menu__anim-item:nth-child(4) {
    animation-delay: 0.23s;
}

#fullSiteMenu.show .full-site-menu__anim-item:nth-child(5) {
    animation-delay: 0.29s;
}

/* Service panel: column groups + links animate when expanded */
#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__service-group {
    opacity: 0;
    animation: full-site-menu-item-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__service-group:nth-child(1) {
    animation-delay: 0.06s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__service-group:nth-child(2) {
    animation-delay: 0.12s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__service-group:nth-child(3) {
    animation-delay: 0.18s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem {
    opacity: 0;
    animation: full-site-menu-subitem-in 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(1) {
    animation-delay: 0.04s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(2) {
    animation-delay: 0.08s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(3) {
    animation-delay: 0.12s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(4) {
    animation-delay: 0.16s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(5) {
    animation-delay: 0.2s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(6) {
    animation-delay: 0.24s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(7) {
    animation-delay: 0.28s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem:nth-child(8) {
    animation-delay: 0.32s;
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse:not(.show) .full-site-menu__service-group {
    animation: none;
    opacity: 0;
    transform: translateY(12px);
}

#fullSiteMenu.show .full-site-menu__service-panel.collapse:not(.show) .full-site-menu__sublist .full-site-menu__subitem {
    animation: none;
    opacity: 0;
    transform: translateX(-10px);
}

@media (prefers-reduced-motion: reduce) {
    #fullSiteMenu.show .full-site-menu__anim-item,
    #fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__service-group,
    #fullSiteMenu.show .full-site-menu__service-panel.collapse.show .full-site-menu__sublist .full-site-menu__subitem {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.main-nav .navbar-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav .nav-link,
.main-nav .nav-service-toggle {
    font-weight: 400;
    font-size: 18px;
    text-transform: none;
    color: #ffffff;
    letter-spacing: 0.5px;
    padding-inline: 0.25rem;
}

.main-nav .nav-service-toggle {
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    text-align: inherit;
    white-space: nowrap;
}

/* Hover / focus / open menu — not the same as current page */
.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-service-toggle:hover,
.main-nav .nav-service-toggle:focus,
.main-nav .nav-service-toggle.show {
    color: #ffffff;
}

/* Current page: theme accent so it reads clearly vs other links */
.main-nav .nav-item.active > .nav-link,
.main-nav .nav-item.active > .nav-service-toggle,
.main-nav .nav-item.active > .nav-link.active,
.main-nav .nav-item.active > .nav-service-toggle.active {
    color: var(--primary);
    font-weight: 600;
}

.main-nav .nav-item.active > .nav-link:hover,
.main-nav .nav-item.active > .nav-link:focus,
.main-nav .nav-item.active > .nav-service-toggle:hover,
.main-nav .nav-item.active > .nav-service-toggle:focus,
.main-nav .nav-item.active > .nav-service-toggle.show {
    color: var(--primary);
}

.app-header.is-scrolled .main-nav .nav-link,
.app-header.is-scrolled .main-nav .nav-service-toggle,
.app-header.is-scrolled .main-nav .nav-link:hover,
.app-header.is-scrolled .main-nav .nav-link:focus,
.app-header.is-scrolled .main-nav .nav-service-toggle:hover,
.app-header.is-scrolled .main-nav .nav-service-toggle:focus,
.app-header.is-scrolled .main-nav .nav-service-toggle.show {
    color: #0f172a;
}

.app-header.is-scrolled .main-nav .nav-item.active > .nav-link,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-link.active,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle.active {
    color: var(--primary);
    font-weight: 600;
}

.app-header.is-scrolled .main-nav .nav-item.active > .nav-link:hover,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-link:focus,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle:hover,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle:focus,
.app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle.show {
    color: var(--primary);
}

body.page-home .main-nav .nav-link,
body.page-home .main-nav .nav-service-toggle,
body.page-home .main-nav .nav-link:hover,
body.page-home .main-nav .nav-link:focus,
body.page-home .main-nav .nav-service-toggle:hover,
body.page-home .main-nav .nav-service-toggle:focus,
body.page-home .main-nav .nav-service-toggle.show {
    color: #ffffff;
}

body.page-home .main-nav .nav-item.active > .nav-link,
body.page-home .main-nav .nav-item.active > .nav-service-toggle,
body.page-home .main-nav .nav-item.active > .nav-link.active,
body.page-home .main-nav .nav-item.active > .nav-service-toggle.active {
    color: var(--primary);
    font-weight: 600;
}

body.page-home .main-nav .nav-item.active > .nav-link:hover,
body.page-home .main-nav .nav-item.active > .nav-link:focus,
body.page-home .main-nav .nav-item.active > .nav-service-toggle:hover,
body.page-home .main-nav .nav-item.active > .nav-service-toggle:focus,
body.page-home .main-nav .nav-item.active > .nav-service-toggle.show {
    color: var(--primary);
}

body.page-home .app-header.is-scrolled .main-nav .nav-link,
body.page-home .app-header.is-scrolled .main-nav .nav-service-toggle,
body.page-home .app-header.is-scrolled .main-nav .nav-link:hover,
body.page-home .app-header.is-scrolled .main-nav .nav-link:focus,
body.page-home .app-header.is-scrolled .main-nav .nav-service-toggle:hover,
body.page-home .app-header.is-scrolled .main-nav .nav-service-toggle:focus,
body.page-home .app-header.is-scrolled .main-nav .nav-service-toggle.show {
    color: #0f172a;
}

body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-link,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-link.active,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle.active {
    color: var(--primary);
    font-weight: 600;
}

body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-link:hover,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-link:focus,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle:hover,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle:focus,
body.page-home .app-header.is-scrolled .main-nav .nav-item.active > .nav-service-toggle.show {
    color: var(--primary);
}

/* Bootstrap .navbar-light .nav-link.active — keep current page in brand accent */
header.app-header nav.navbar .main-nav .nav-item.active > .nav-link,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-link.active,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-service-toggle,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-service-toggle.active {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

header.app-header nav.navbar .main-nav .nav-item.active > .nav-link:hover,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-link:focus,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-service-toggle:hover,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-service-toggle:focus,
header.app-header nav.navbar .main-nav .nav-item.active > .nav-service-toggle.show {
    color: var(--primary) !important;
}

/* Beat any later framework rules: header links stay sentence case */
header.app-header .main-nav .nav-link,
header.app-header .main-nav .dropdown-item,
header.app-header .main-nav .nav-service-toggle {
    text-transform: none;
}

header.app-header .header-action .btn {
    text-transform: none;
}

.has-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
}

.main-nav .dropdown-toggle::after {
    display: none;
}

.main-nav .dropdown-menu {
    margin-top: 0.5rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
}

/* Service nav: grouped mega-style panel (reference layout) */
.main-nav .dropdown-menu.nav-service-megamenu {
    margin-top: 0.65rem;
    min-width: min(100vw - 2rem, 300px);
    max-width: 320px;
    padding: 16px 0 14px;
    background: linear-gradient(180deg, #f6f7f9 0%, #e8eaee 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow:
        6px 10px 28px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: visible;
}

.main-nav .dropdown-menu.nav-service-megamenu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 26px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f6f7f9;
    filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.05));
    pointer-events: none;
    z-index: 1;
}

.main-nav .dropdown-menu.nav-service-megamenu .nav-service-menu__group {
    list-style: none;
}

.main-nav .dropdown-menu.nav-service-megamenu .nav-service-menu__group-label {
    display: block;
    padding: 6px 22px 8px;
    margin-bottom: 0;
    font-family: "Kanit", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1c1f24;
    white-space: normal;
}

.main-nav .dropdown-menu.nav-service-megamenu .nav-service-menu__group-label.dropdown-header {
    color: #1c1f24;
}

.main-nav .dropdown-menu.nav-service-megamenu .nav-service-menu__divider {
    margin: 10px 18px;
    opacity: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.main-nav .dropdown-menu.nav-service-megamenu .dropdown-item.nav-service-menu__link {
    padding: 7px 22px;
    font-family: "Kanit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #2b3035;
    white-space: normal;
}

.main-nav .dropdown-menu.nav-service-megamenu .dropdown-item.nav-service-menu__link:hover,
.main-nav .dropdown-menu.nav-service-megamenu .dropdown-item.nav-service-menu__link:focus {
    background: rgba(255, 255, 255, 0.65);
    color: var(--primary);
}

.main-nav .dropdown-menu.nav-service-megamenu .dropdown-item.nav-service-menu__link.active {
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary);
    font-weight: 500;
}

header.app-header .main-nav .dropdown-menu.nav-service-megamenu .dropdown-item.nav-service-menu__link.active {
    box-shadow: inset 3px 0 0 var(--primary);
}

/* Legacy hover menus only: must NOT match li.nav-item.dropdown (Bootstrap navbar) */
ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.has-dropdown:hover > ul.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

ul.dropdown > li {
    position: relative;
    width: 100%;
}

ul.dropdown .right-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.dropdown .right-dropdown > ul.dropdown {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
    transform: translateX(10px) translateY(0);
}

ul.dropdown .right-dropdown:hover > ul.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.main-nav .dropdown-menu .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    text-transform: none;
    font-size: 15px;
    color: var(--text-main);
}

.main-nav .dropdown-menu .dropdown-item:hover,
.main-nav .dropdown-menu .dropdown-item:focus,
.main-nav .dropdown-menu .dropdown-item.active {
    background: #f1f5f9;
    color: var(--primary);
}

header.app-header .main-nav .dropdown-menu .dropdown-item.active {
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--primary);
}

header.app-header .header-action a.btn-dark.active {
    background: var(--primary) !important;
    color: var(--text-main) !important;
    border-color: transparent !important;
}

ul.dropdown li a {
    padding: 12px 20px;
    display: block;
    text-transform: none;
    font-size: 15px;
    color: var(--text-main);
}

ul.dropdown li a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
}

.btn-dark {
    background: #ffffff;
    color: var(--text-main);
}

.btn-dark:hover {
    background: var(--primary);
    color: var(--text-main);
    transform: translateY(-2px);
}



.banner-section {
    width: 100%;
}

.banner-inner {
    position: relative;
    width: 100%;
}

.banner-carousel {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Non-interactive overlay: dots use pointer-events auto */
.banner-ui {
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
}

.banner-slide-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 100%;
}

.banner-carousel .owl-stage-outer,
.banner-carousel .owl-stage,
.banner-carousel .owl-item {
    height: 100vh;
}

.banner-slide {
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.48) 45%,
        rgba(0, 0, 0, 0.2) 75%,
        rgba(0, 0, 0, 0.06) 100%
    );
    z-index: 1;
}

/* Sample Unsplash backgrounds */
.slide-1 {
    background-image: url('img/trading-banner.png');
}

.slide-2 {
    background-image: url('img/welding-fabrication.png');
}

.slide-3 {
    background-image: url('img/event-management -interiors.png');
}

/* Inner pages (about, contact, career, service pages): fixed banner height */
.about-page-banner .banner-slide {
    height: 450px;
    min-height: 450px;
    max-height: 450px;
    background-image: url('img/inner-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-page-banner.about-page-banner--trading .banner-slide {
    background-image: url('img/trading.png');
}

.about-page-banner.about-page-banner--service .banner-slide {
    background-image: url('img/service.png');
}

.about-page-banner.about-page-banner--career .banner-slide {
    background-image: url('img/career.png');
}

.about-page-banner.about-page-banner--contact .banner-slide {
    background-image: url('img/contact.png');
}

/* Stronger readability on the left; opens toward the right (photo stays visible) */
.about-page-banner .banner-slide::before {
    background: linear-gradient(
        90deg,
        rgba(15, 42, 29, 0.88) 0%,
        rgba(15, 42, 29, 0.55) 50%,
        rgba(15, 42, 29, 0.22) 76%,
        rgba(15, 42, 29, 0) 100%
    );
}

.about-page-banner .slide-content {
    padding: 32px 0 28px;
    display: flex;
    align-items: center;
}

.about-page-banner .title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 500 !important;
}

.slide-content {
    height: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Timeline */
.slide-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-right: 60px;
    height: 100%;
    z-index: 10;
}

/* Sticky / fixed dots: aligned to same .container as slide copy */
.slide-timeline.slide-timeline-fixed {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
    height: auto;
    z-index: 1;
    pointer-events: auto;
}

.slide-timeline .banner-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: 0.3s;
    appearance: none;
    padding: 0;
    margin: 0;
}

.slide-timeline .banner-dot:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.slide-timeline .banner-dot.active {
    background: #fff;
    color: var(--text-main);
    border-color: #fff;
}

.slide-timeline .banner-dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.timeline-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}

/* Main TextInfo */
.slide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.title {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: #bade24;
    border-color: #bade24;
    transform: translateY(-2px);
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.action-buttons .btn:focus,
.action-buttons .btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-top-left-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 40px;
    padding: 30px;
    width: 380px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

/* Left Inverse Curve */
.floating-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at top left, transparent 40px, #ffffff 41px);
    pointer-events: none;
}

/* Right Inverse Curve */
.floating-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at top left, transparent 40px, #ffffff 41px);
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.card-header i {
    font-size: 18px;
}

.card-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-images {
    display: flex;
    position: relative;
    padding-right: 15px;
}

.card-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.card-images img:nth-child(2) {
    margin-left: -20px;
    position: relative;
    z-index: 2;
}

.img-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    margin-left: -20px;
    position: relative;
    z-index: 3;
}

.card-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Custom Owl Carousel Nav (Optional) */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* Custom border-radius overlay trick to cover the bottom right cutout from user's screenshot if we wanted to make that literal */
/* For a simple implementation, floating full card is preferred and looks standard next generation modern UI */

@media (max-width: 1024px) {
    .title {
        font-size: 50px;
    }

    .floating-card {
        bottom: 30px;
        right: 30px;
        width: 340px;
    }
}

@media (max-width: 768px) {
    .app-header .header-container {
        padding-left: 0;
        padding-right: 0;
    }

    .app-header .navbar-brand,
    .app-header .navbar-toggler {
        margin-left: 16px;
        margin-right: 16px;
    }

    .app-header .main-nav {
        background: #ffffff;
        border-radius: 0;
        margin-top: 0;
        padding: 0.75rem 1rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
        width: 100%;
        flex-basis: 100%;
    }

    .app-header .main-nav.collapse.show,
    .app-header .main-nav.collapsing {
        display: block;
        width: 100%;
    }

    .app-header .main-nav.show .nav-link,
    .app-header .main-nav.show .nav-service-toggle,
    .app-header .main-nav.show .nav-link:hover,
    .app-header .main-nav.show .nav-link:focus,
    .app-header .main-nav.show .nav-service-toggle:hover,
    .app-header .main-nav.show .nav-service-toggle:focus,
    .app-header .main-nav.show .nav-service-toggle.show {
        color: #111827 !important;
    }

    .app-header .main-nav.show .nav-item.active > .nav-link,
    .app-header .main-nav.show .nav-item.active > .nav-service-toggle,
    .app-header .main-nav.show .nav-item.active > .nav-link.active,
    .app-header .main-nav.show .nav-item.active > .nav-service-toggle.active {
        color: var(--primary) !important;
    }

    .main-nav .navbar-nav {
        gap: 0;
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .main-nav .nav-link,
    .main-nav .nav-service-toggle {
        padding: 0.5rem 0;
    }

    .app-header .main-nav.show .header-action {
        margin-top: 0.5rem !important;
        width: 100%;
    }

    .app-header .main-nav.show .header-action .btn,
    .app-header .main-nav.show .header-action .btn-dark {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0.5rem 0 !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        color: #111827 !important;
        text-transform: none;
    }

    .app-header .main-nav.show .header-action .btn:hover,
    .app-header .main-nav.show .header-action .btn:focus,
    .app-header .main-nav.show .header-action .btn-dark:hover,
    .app-header .main-nav.show .header-action .btn-dark:focus {
        background: transparent !important;
        color: #111827 !important;
        transform: none !important;
    }

    .app-header .main-nav.show .header-action a.btn-dark.active {
        background: transparent !important;
        color: var(--primary) !important;
        border-color: transparent !important;
    }

    .floating-card {
        position: static;
        margin-top: 40px;
        width: 100%;
    }

    .banner-slide-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    .slide-content {
        padding: 120px 0 40px;
    }

    .about-page-banner .banner-slide {
        height: 390px;
        min-height: 390px;
        max-height: 390px;
    }

    .about-page-banner .slide-content {
        padding: 28px 0 24px;
    }

    .about-page-banner .title {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .slide-timeline.slide-timeline-fixed {
        flex-direction: row;
        top: 6.5rem;
        left: 0;
        transform: none;
        margin: 0;
        gap: 10px;
    }

    .slide-timeline.slide-timeline-fixed .timeline-line {
        width: 40px;
        height: 1px;
    }

}

/* New Tech About Section CSS */
:root {
    --about-purple: #6343e8;
    --about-navy: #0e1136;
}

.about-section {
    background-color: #fbfcff;
}

.background-text-about {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-weight: 800;
    color: rgba(99, 67, 232, 0.04);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
}

/* BLOB IMAGE AREA */
.about-blob-img-wrapper {
    width: 100%;
    z-index: 2;
}

.blob-mask {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect ratio */
    overflow: hidden;
    /* Organic Blob Border Radius */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 2;
    transform: rotate(-3deg);
    background-color: #fff;
}

.blob-mask img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(3deg) scale(1.1);
    /* Counter act rotation */
}

/* Base Shadow Offset Blob */
.blob-bg-shape {
    position: absolute;
    top: -5%;
    left: -10%;
    width: 110%;
    height: 110%;
    background-color: #f2f0fc;
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
}

.play-blob-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--about-purple);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    padding-left: 5px;
    transition: 0.3s;
}

.play-blob-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--about-purple);
    color: white;
}

/* Floating Blob Shapes */
.floating-blob {
    position: absolute;
    z-index: 3;
}

.fb-1 {
    width: 110px;
    top: -10%;
    right: 15%;
    transform: rotate(15deg);
}

.fb-2 {
    width: 80px;
    bottom: 5%;
    left: -5%;
    transform: rotate(-15deg);
}

.fb-3 {
    width: 40px;
    bottom: -5%;
    right: 20%;
    transform: rotate(45deg);
}

/* CONTENT BLOCKS */
.icon-square {
    width: 25px;
    height: 25px;
    background: var(--about-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
}

/* Feature Tabs Component */
.about-feature-box {
    overflow: hidden;
}

.feature-tabs {
    width: 100%;
    border-bottom: 0;
}

.tab-btn {
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
}

.tab-btn.active {
    background: var(--about-purple);
    color: white;
}

.tab-btn.inactive {
    background: var(--about-navy);
    color: white;
}

/* Active Tab Pointer Triangle */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--about-purple);
    z-index: 2;
}

.btn-about-more {
    background: var(--about-purple);
    transition: 0.3s;
}

.btn-about-more:hover {
    background: #4c30b5;
    color: white;
}

/* Inline styles replacement */
.header-overlay-custom {
    height: 250px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 99;
    pointer-events: none;
}

.about-img-wrapper {
    /* max-width: 500px; */
    /* padding: 25px; */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    background-color: #fcfcfd;
}

.about-main-img {
    height: 673px;
    object-fit: cover;
    width: 100%;
}

.floating-stats-card {
    bottom: -20px;
    right: -25px;
    max-width: 250px;
}

.stats-card-title {
    color: #1e293b;
}

.stats-card-desc {
    line-height: 1.4;
    font-size: 11.5px;
}

.stats-highlight {
    color: var(--primary);
    font-weight: bold;
}

.user-avatar-1 {
    width: 28px;
    height: 28px;
    object-fit: cover;
    margin-right: -10px;
    position: relative;
    z-index: 4;
}

.user-avatar-2 {
    width: 28px;
    height: 28px;
    object-fit: cover;
    margin-right: -10px;
    position: relative;
    z-index: 3;
}

.user-avatar-3 {
    width: 28px;
    height: 28px;
    object-fit: cover;
    margin-right: -10px;
    position: relative;
    z-index: 2;
}

.user-avatar-4 {
    width: 28px;
    height: 28px;
    object-fit: cover;
    z-index: 1;
}

.star-rating {
    font-size: 10px;
    color: var(--primary);
}

.reviews-count {
    font-size: 10px;
}

.subtitle-badge {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.subtitle-dot-outer {
    width: 16px;
    height: 16px;
    background: var(--primary);
}

.subtitle-dot-inner {
    width: 6px;
    height: 6px;
}

.subtitle-text {
    font-size: 13px;
    font-weight: 500;
}

.about-title {
    color: #1e293b;
    line-height: 1.15;
}

.about-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 95%;
}

.feature-item {
    font-size: 13.5px;
}

.feature-icon {
    color: var(--primary);
}

.btn-about {
    background-color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.stat-box {
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
}

.services-advanced-section {
    background-color: #0f2a1d;
    position: relative;
    overflow: hidden;
    padding: 140px 0px;
}

/* Full-menu anchors: offset for fixed header */
.home-service-card,
.trading-page-offering--anchor {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .home-service-card,
    .trading-page-offering--anchor {
        scroll-margin-top: 82px;
    }
}

.bg-texture {
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 10px);
}

.dot-primary {
    width: 13px;
    height: 13px;
    background-color: var(--primary);
}

.dot-white {
    width: 13px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-left: -5px;
}

.dot-dark {
    width: 13px;
    height: 13px;
    background-color: #0f2a1d;
    margin-left: -5px;
}

.section-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.section-title {
    line-height: 1.25;
}

.btn-view-all {
    font-size: 13px;
    font-weight: 700;
}

.btn-view-all-icon {
    font-size: 11px;
}

.service-card-dark {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-bg {
    background-color: rgba(255, 255, 255, 0.02);
}

.service-card-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500 !important;
}

.service-card-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.service-card-copy {
    font-size: 14px;
    line-height: 1.6;
}

.service-card-link-wrap {
    padding-top: 15px;
}

.service-card-link-size {
    font-size: 14px;
}

.service-card-dark:hover {
    transform: translateY(-10px);
    background-color: var(--primary) !important;
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35) !important;
}

.service-card-dark:hover h4,
.service-card-dark:hover p,
.service-card-dark:hover a {
    color: #1f2937 !important;
}

.service-img {
    height: 180px;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
}

.service-title {
    font-size: 17px;
}

.service-desc {
    font-size: 13px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    font-size: 13px;
}

.service-card-primary {
    background-color: var(--primary);
    transform: translateY(-10px);
}

.service-card-hover-primary {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card-hover-title {
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card-hover-desc {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.service-card-hover-link {
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card-hover-primary:hover {
    background-color: var(--primary);
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35) !important;
}

.service-card-hover-primary:hover .service-card-hover-title,
.service-card-hover-primary:hover .service-card-hover-desc,
.service-card-hover-primary:hover .service-card-hover-link {
    color: #1f2937;
}

.services-advanced-section .card img {
    transition: transform 0.35s ease;
}

.services-advanced-section .card:hover img {
    transform: scale(1.04);
}

.service-desc-dark {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

.service-link-dark {
    font-size: 13px;
}

.service-img-bottom {
    height: 160px;
    object-fit: cover;
    filter: grayscale(100%);
}

.section-subtitle-dark {
    font-size: 13px;
}

.section-title-dark {
    max-width: 500px;
    line-height: 1.25;
}

.collage-wrapper {
    height: 100%;
    min-height: 480px;
}

.collage-img-main {
    width: 55%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 16px;
    z-index: 2;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.collage-img-small {
    width: 42%;
    height: 45%;
    right: 0;
    top: 0;
    object-fit: cover;
    border-radius: 16px;
    z-index: 2;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.collage-shape {
    width: 42%;
    height: 52%;
    right: 0;
    bottom: 0%;
    background-color: var(--primary);
    border-radius: 16px;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-shape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img-main:hover,
.collage-img-small:hover,
.collage-shape:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25) !important;
}

.collage-img-main:hover,
.collage-img-small:hover {
    filter: grayscale(0%);
}

.bg-dark-green {
    background-color: #0f2a1d;
}

.feature-box-tl {
    border-right-color: rgba(255, 255, 255, 0.08) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    border-right-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
}

.feature-box-tr {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    border-bottom-style: solid;
    border-width: 1px;
}

.feature-box-bl {
    border-right-color: rgba(255, 255, 255, 0.08) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    border-right-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
}

.feature-icon-i {
    font-size: 18px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500 !important;
}

.feature-desc {
    font-size: 13.5px;
    line-height: 1.6;
}

/* Fun Facts Banner */
.funfacts-banner {
    background-color: #253F2E;
}

.funfacts-left {
    background-color: #3f6049;
    /* Soft transition from left to right */
    position: relative;
    min-height: 300px;
}

.funfacts-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}



.funfacts-right {
    background-color: #1b3022;
}

.funfact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funfacts-number {
    font-size: 60px;
    font-weight: 500;
    color: #F8B426;
}

.funfacts-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .funfacts-left {
        text-align: center;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    background-color: #ffffff;
}

.cta-banner {
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.cta-banner-image {
    background-image: url('img/paralax.jpg');
    background-attachment: fixed;
    padding: 0px 50px;
}

.cta-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.cta-desc {
    max-width: 450px;
    line-height: 1.6;
}

.cta-btn {
    font-size: 14px;
}

@media (max-width: 768px) {
    .cta-banner {
        background-position: center;
        min-height: 400px;
    }

    .cta-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    }
}

/* Workflow Section Marquee */
.workflow-section {
    perspective: 1500px;
}

.workflow-copy {
    max-width: 600px;
    font-size: 16px;
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
}

.marquee-wrapper-spacing {
    padding: 20px 0 60px;
}

.marquee-edge {
    width: 15vw;
    pointer-events: none;
}

.marquee-edge-left {
    background: linear-gradient(to right, #fcfbfa 0%, transparent 100%);
}

.marquee-edge-right {
    background: linear-gradient(to left, #fcfbfa 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 45s linear infinite;
    gap: 25px;
    padding-left: 25px;
}

.marquee-item {
    flex-shrink: 0;
    width: 240px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Transform managed mostly via Javascript for 3D curved effect */
    transform-origin: center center;
    will-change: transform;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

@media (max-width: 768px) {
    .marquee-item {
        width: 180px;
        height: 240px;
    }
}

/* Footer V3 — dark CTA + three columns + bar (CSI) */
.footer-v3 {
    background: #000000;
    color: #a3a3a3;
    padding: 72px 0 40px;
}

.footer-v3-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    flex-wrap: wrap;
    max-width: none;
    margin: 0;
}

.footer-v3-cta-title {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    text-align: left;
    flex: 1 1 240px;
    max-width: 720px;
}

.footer-v3-cta-sub {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin: 0 auto 28px;
    max-width: 520px;
}

.footer-v3-cta-trust {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 28px;
}

.footer-v3-cta-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #334155, #1e293b);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.footer-v3-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-v3-cta-trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-v3-cta .footer-v3-cta-btn {
    flex-shrink: 0;
}

.footer-v3-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-v3-cta-btn:hover {
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.12);
}

.footer-v3-rule {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 56px 0 48px;
    opacity: 1;
}

.footer-v3-columns {
    align-items: flex-start;
}

.footer-v3-heading {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-v3-heading-connect {
    margin-bottom: 12px;
}

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

.footer-v3-list li {
    margin-bottom: 12px;
}

.footer-v3-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.footer-v3-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-v3-link.is-active {
    color: var(--primary);
    font-weight: 600;
}

.footer-v3-connect-lead {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.45;
    margin: 0 0 20px;
    max-width: 320px;
}

.footer-v3-connect-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px 20px;
}

.footer-v3-connect-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-v3-connect-form input {
    flex: 1 1 200px;
    min-width: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-v3-connect-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-v3-connect-form input:focus {
    border-bottom-color: var(--primary);
}

.footer-v3-submit {
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-v3-submit:hover {
    background: #bade24;
    color: var(--text-main);
    transform: translateY(-1px);
}

.footer-v3-bar {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-v3-copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.footer-v3-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
}

.footer-v3-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-v3-social-link i {
    font-size: 15px;
    color: #ffffff;
}

.footer-v3-social-link:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .footer-v3 {
        padding: 56px 0 32px;
    }

    .footer-v3-rule {
        margin: 40px 0 36px;
    }

    .footer-v3-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .footer-v3-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-v3-cta-title {
        flex: none;
        max-width: none;
    }

    .footer-v3-cta .footer-v3-cta-btn {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .footer-v3-cta-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .footer-v3-connect-form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-v3-submit {
        align-self: flex-start;
    }
}

/* About Reference Layout */
.about-ref-hero {
    padding: 100px 0;
    background: linear-gradient(160deg, rgba(13, 121, 110, 0.94), rgba(21, 137, 126, 0)),
        url("img/local-cdn/unsplash-2def4b472d03.jpg") center/cover;
    color: #ffffff;
}

.about-ref-kicker {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.8;
}

.about-ref-hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    max-width: 620px;
    margin-bottom: 14px;
    font-weight: 700;
}

.about-ref-breadcrumb {
    font-size: 17px;

}

.about-ref-breadcrumb span {
    margin: 0 8px;
}


.about-ref-content h2 {
    font-size: 43px;
    line-height: 50px;
    color: #111827;
    font-weight: 600;
}

.about-ref-content h3 {
    font-size: 43px;
    color: #111827;
    font-weight: 600;
    margin-bottom: 16px;
}



.about-ref-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 14px;
}

.about-ref-mini-kicker {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

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

.about-ref-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #374151;
}

.about-ref-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ac2b6;
}

.about-ref-block .about-ref-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 14px;
}

.about-ref-block .about-ref-desc p:last-child {
    margin-bottom: 0;
}

.about-ref-block .about-ref-desc .about-approach-list li {
    font-size: 18px;
    line-height: 1.65;
    color: #4b5563;
}

.about-ref-block .about-ref-desc .about-approach-list .feature-icon {
    font-size: 1.15rem;
    margin-top: 0.2rem;
}

.about-ref-img {
    width: 100%;
    border-radius: 16px;
    height:400px;
    object-fit: cover;
}

.about-ref-stats {
    background: #f4f4f4;
    padding: 140px 0px;
}



.about-ref-stat {
    background: #ffffff;
    border: 1px solid #dde3ea;
    border-radius: 10px;
    text-align: center;
    padding:30px;
    height: 100%;
}

.about-ref-stat h4 {
    font-size: 56px;
    color: #1f4a64;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-ref-stat p {
    font-size: 15px !important;
    letter-spacing: 0.8px;
    color: #6b7280;
    margin: 0;
}



.about-ref-member {
    text-align: center;
}

.about-ref-member img {
    width: 100%;
    border-radius: 14px;
    height: 340px;
    object-fit: cover;
    margin-bottom: 12px;
}

.about-ref-member h5 {
    margin: 10px 0 5px;
    font-size: 19px !important;
    color: #111827;
}

.about-ref-member p {
    margin: 0;
    font-size: 10px !important;
    letter-spacing: 0.8px;
    color: #6b7280;
}

.about-team-carousel {
    position: relative;
    padding: 0 52px 8px;
}

.about-team-carousel .owl-nav {
    margin: 0;
}

.about-team-carousel .owl-nav button {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f2a1d !important;
    color: var(--primary) !important;
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.about-team-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: #0f2a1d !important;
}

.about-team-carousel .owl-nav .owl-prev {
    left: 0;
}

.about-team-carousel .owl-nav .owl-next {
    right: 0;
}

.about-team-carousel .owl-dots {
    margin-top: 18px;
}

.about-team-carousel .owl-dot span {
    background: #cbd5e1;
}

.about-team-carousel .owl-dot.active span,
.about-team-carousel .owl-dot:hover span {
    background: var(--primary);
}

.about-team-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 576px) {
    .about-team-carousel {
        padding: 0 44px 8px;
    }

    .about-team-carousel .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .about-ref-hero {
        padding: 100px 0 44px;
    }

   

    .about-ref-block {
        margin-bottom: 48px;
    }

    .about-ref-img {
        height: 230px;
    }

    .about-ref-stats {
        padding-bottom: 66px;
    }
}

/* About Page V2 */
.about-modern-intro,
.about-modern-values,
.about-modern-stats,
.about-modern-team,
.about-modern-cta {
    padding: 100px 0;
}

.about-modern-intro {
    background: #ffffff;
}

.about-modern-breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.about-modern-breadcrumb span {
    margin: 0 6px;
}

.about-modern-title {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-modern-lead {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 760px;
}

.about-modern-side-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.about-modern-side-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-modern-side-content {
    padding: 22px;
}

.about-modern-side-content h5 {
    color: #111827;
    margin-bottom: 8px;
}

.about-modern-side-content p {
    color: #6b7280;
    margin: 0;
}

.about-modern-values {
    background: #111320;
}

.about-modern-values .about-value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-modern-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.about-modern-section-title {
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.1;
    color: #111827;
    margin: 0;
}

.about-modern-stats {
    background: #ffffff;
}

.about-modern-stat-box {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    text-align: center;
    background: #fff;
}

.about-modern-stat-box h3 {
    font-size: clamp(32px, 3vw, 44px);
    color: #111827;
    margin-bottom: 10px;
}

.about-modern-stat-box p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.about-modern-team {
    background: #f8fafc;
}

.about-modern-team-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 100%;
}

.about-modern-team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-modern-team-card h5 {
    padding: 20px 18px 8px;
    margin: 0;
    color: #111827;
}

.about-modern-team-card p {
    padding: 0 18px 22px;
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.about-modern-cta {
    background: #ffffff;
}

.about-modern-cta-box {
    background: #111320;
    border-radius: 24px;
    padding: 46px 36px;
    text-align: center;
}

.about-modern-cta-box h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: clamp(28px, 3vw, 40px);
}

.about-modern-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-modern-intro,
    .about-modern-values,
    .about-modern-stats,
    .about-modern-team,
    .about-modern-cta {
        padding: 70px 0;
    }

    .about-modern-lead {
        font-size: 16px;
    }
}

/* Inner Pages */
.inner-hero-section {
    min-height: 300px;
    padding: 72px 0 40px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(15, 42, 29, 0.88) 0%, rgba(21, 54, 38, 0.68) 60%, rgba(33, 74, 53, 0.5) 100%),
        url('img/inner-banner.png') center/cover no-repeat;
}

.inner-hero-content {
    max-width: 760px;
}

.inner-hero-kicker {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.inner-hero-content h1 {
    font-size: clamp(34px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.inner-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.about-mini-stat {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
}

.about-mini-stat h4 {
    margin: 0 0 4px;
    font-size: 28px;
    color: #0f2a1d;
}

.about-mini-stat p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.about-values-section {
    background: #0f2a1d;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
}

.about-value-card i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #0f2a1d;
    margin-bottom: 14px;
}

.about-value-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.about-value-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-size: 14px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.testimonial-card p {
    color: #374151;
    margin-bottom: 16px;
}

.testimonial-card h6 {
    margin: 0;
    font-size: 16px;
    color: #111827;
}

.testimonial-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.about-cta-strip {
    background: #1f201e;
}

.services-alt-section {
    background: #f8fafc;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(203, 227, 45, 0.25);
    color: #0f2a1d;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #374151;
}

.service-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 7px;
}

.career-benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 22px;
    height: 100%;
}

.career-benefit-card i {
    color: #0f2a1d;
    font-size: 20px;
    margin-bottom: 12px;
}

.career-benefit-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.career-benefit-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.career-role-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 22px;
    height: 100%;
}

.career-role-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.career-role-meta span {
    background: #eef2f7;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #334155;
}

.career-role-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.career-role-card p {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 18px;
}

.career-role-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.career-role-footer small {
    color: #6b7280;
    font-weight: 600;
}

.career-cta-block {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.career-cta-block h3 {
    margin-bottom: 8px;
}

.career-cta-block p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

.career-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.career-meta-grid>div {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 12px;
    font-size: 14px;
}

.career-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 22px;
}

.career-detail-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.career-detail-card ul {
    margin: 0;
    padding-left: 20px;
}

.career-detail-card ul li {
    margin-bottom: 10px;
    color: #374151;
}

.career-back-link {
    color: #0f2a1d;
    font-size: 14px;
    font-weight: 600;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
}

.contact-info-card i {
    color: #0f2a1d;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form-card,
.contact-map-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    padding: 12px 14px;
}

.contact-map-card ul {
    margin: 0;
    padding-left: 18px;
}

.contact-map-card li {
    color: #374151;
    margin-bottom: 10px;
}

.contact-v3 {
    background: #ffffff !important;
}

.contact-v3-wrap {
    max-width: 1320px;
}

.contact-v3-top {
    max-width: 760px;
    margin: 0 auto 62px;
}

.contact-v3-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #4b5563;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-v3-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #0f2a1d;
    font-weight: 700;
}

.contact-v3-subtitle {
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
}

.contact-v3-form-card {
    background: #edf0f4;
    border-radius: 14px;
    padding: 40px;
    height: 100%;
}

.contact-v3-form-card h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #0f2a1d;
    font-weight: 500;
}

.contact-v3-form-card .form-control {
    border-radius: 8px;
    border: none;
    min-height: 46px;
    padding: 12px 14px;
    box-shadow: none;
}

.contact-v3-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-v3-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(203, 227, 45, 0.22);
}

.contact-v3-btn {
    background: var(--primary);
    color: #0f2a1d;
    border: 0;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.contact-v3-btn:hover {
    background: #0f2a1d;
    color: #fff;
}

.contact-v3-details h3 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #0f2a1d;
    font-weight: 500;
}

.contact-v3-details>p {
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 680px;
    font-size: 15px;
}

.contact-v3-info {
    border: 1px solid #d8dee5;
    background: #fff;
    border-radius: 13px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    height: 100%;
}

.contact-v3-info-address {
    margin-bottom: 20px;
}

.contact-v3-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #0f2a1d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.contact-v3-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #0f2a1d;
}

.contact-v3-info p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.contact-v3-social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-v3-social span {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin-right: 4px;
}

.contact-v3-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef2f6;
    color: #0f2a1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.contact-v3-social a:hover {
    background: var(--primary);
    color: #0f2a1d;
}



.contact-v3-faq h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #0f2a1d;
    margin-bottom: 12px;
}

.contact-v3-faq p {
    color: #4b5563;
    font-size: 15px;
}

.contact-v3-accordion .accordion-item {
    border: 1px solid #dde3ea;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.contact-v3-accordion .accordion-button {
    background: #fff;
    color: #0f2a1d;
    font-weight: 600;
    box-shadow: none;
    padding: 22px 22px;
    font-size: 16px;
}

.contact-v3-accordion .accordion-button:not(.collapsed) {
    background: #f4f9d9;
    color: #11735c;
}

.contact-v3-accordion .accordion-button:focus {
    box-shadow: none;
}

.contact-v3-accordion .accordion-body {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    background: #fff;
    padding: 20px 22px 24px;
}

.map-placeholder {
    min-height: 220px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    background: #f8fafc;
}

@media (max-width: 991px) {
    .inner-hero-section {
        padding: 190px 0 70px;
    }

    .career-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inner-hero-content p {
        font-size: 15px;
    }

    .career-role-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-meta-grid {
        grid-template-columns: 1fr;
    }

    .contact-v3-title {
        font-size: 38px;
    }



    .contact-v3-faq h2 {
        font-size: 38px;
    }
}

.section-padding{
    margin-top: 140px;
}
.common-heading{
    font-size: 45px;
    line-height: 50px;
    color: #111827;
    font-weight: 600 !important;
}

.common-heading .heading-accent {
    color: var(--primary);
}

.career-v2 .common-heading span {
    color: var(--primary);
}

/* Floating back-to-top + WhatsApp */
.site-float-actions {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.site-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(15, 42, 29, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.site-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 42, 29, 0.22);
}

.site-float-back-top {
    background: #0f2a1d;
    color: var(--primary);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-float-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-float-whatsapp {
    background: #25d366;
    color: #fff;
}

.site-float-whatsapp:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .site-float-actions {
        right: 14px;
        bottom: 18px;
    }

    .site-float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

.trading-page-intro {
    background: #fff;
}

.trading-page-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
}

.trading-page-main-title {
    font-size: 56px;
    line-height: 1.04;
    color: #0f2a1d;
    margin-bottom: 24px;
}

.trading-page-cta {
    background: var(--primary);
    color: #0f2a1d;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 600;
    border: 0;
}

.trading-page-cta:hover {
    background: #0f2a1d;
    color: #fff;
}

.trading-page-copy p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

.trading-page-intro-row .trading-page-cta-inline {
    margin-top: 22px;
}

.trading-page-image {
    width: 100%;
    height: 250px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(15, 42, 29, 0.08);
}

/* Intro image mosaic: 2 stacked (left) + 1 tall (right), reference layout */
.trading-page-mosaic {
    --trading-mosaic-r: 40px;
    --trading-mosaic-gap: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--trading-mosaic-gap);

    height: 560px;
}

.trading-page-mosaic__img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.trading-page-mosaic__img--tl {
    grid-column: 1;
    grid-row: 1;
    border-radius: var(--trading-mosaic-r) 0 0 0;
}

.trading-page-mosaic__img--bl {
    grid-column: 1;
    grid-row: 2;
    border-radius: 0 0 0 var(--trading-mosaic-r);
}

.trading-page-mosaic__img--tall {
    grid-column: 2;
    grid-row: 1 / span 2;
    border-radius: 0 var(--trading-mosaic-r) var(--trading-mosaic-r) 0;
}

/* Single uploaded composite (outer rounding; gutters baked into asset) */
.trading-page-mosaic--reference {
    display: block;
    min-height: 0;
    max-height: none;
    height: auto;
}

.trading-page-mosaic__reference-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 992px) {
    .trading-page-intro-row > .col-lg-5 {
        display: flex;
        flex-direction: column;
    }



    .trading-page-mosaic--reference {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 580px;
    }

    .trading-page-mosaic__reference-img {
        flex: 1 1 auto;
        width: 100%;
        min-height: 580px;

        object-fit: cover;
        object-position: center;
    }
}

.trading-page-categories {
    background: #fff;
}

.trading-page-heading {
    max-width: 760px;
    margin: 0 auto 36px;
}


.trading-page-heading p {
    color: #6b7280;
    margin: 0;
}

/* Category cards: horizontal row, colored icon disc, title + subtitle */
.trading-page-card-grid {
    --trading-card-radius: 14px;
    --trading-card-icon: 48px;
}

.trading-page-card {
    height: 100%;
    min-height: 112px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--trading-card-radius);
    padding: 16px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
}

.trading-page-card__icon {
    width: var(--trading-card-icon);
    height: var(--trading-card-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.trading-page-card__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trading-page-card__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.trading-page-card__desc {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.35;
}

.trading-page-card--tone-1 .trading-page-card__icon {
    background: #f59e0b;
}

.trading-page-card--tone-2 .trading-page-card__icon {
    background: #2563eb;
}

.trading-page-card--tone-3 .trading-page-card__icon {
    background: #10b981;
}

.trading-page-card--tone-4 .trading-page-card__icon {
    background: #0ea5e9;
}

.trading-page-card--tone-5 .trading-page-card__icon {
    background: #8b5cf6;
}

.trading-page-card--tone-6 .trading-page-card__icon {
    background: #db2777;
}

.trading-page-card--tone-7 .trading-page-card__icon {
    background: #ea580c;
}

.trading-page-card--tone-8 .trading-page-card__icon {
    background: #14b8a6;
}

/* Trading page: detailed oil & gas offering blocks (replaces compact category grid) */
.trading-page-offerings {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0 auto;
}

.trading-page-offering {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 24px 24px;
}

.trading-page-offering--has-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .trading-page-offering--has-media {
        grid-template-columns: minmax(160px, 26%) minmax(0, 1fr);
        gap: 28px;
        padding: 24px 28px 28px;
        align-items: stretch;
    }
}

.trading-page-offering__media {
    min-width: 0;
    min-height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 42, 29, 0.08);
}

@media (max-width: 767px) {
    .trading-page-offering__media {
        max-height: 320px;
    }
}

@media (min-width: 768px) {
    .trading-page-offering__media {
        align-self: stretch;
        height: 100%;
        min-height: 200px;
    }
}

.trading-page-offering__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .trading-page-offering__img {
        height: auto;
        min-height: 200px;
        max-height: 320px;
        aspect-ratio: 16 / 10;
    }
}

.trading-page-offering__content {
    min-width: 0;
}

.trading-page-offering__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.trading-page-offering__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.trading-page-offering__title {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #0f2a1d;
    line-height: 1.3;
    margin: 0;
    padding-top: 8px;
}

.trading-page-offering__body.trading-page-copy p {
    margin-bottom: 14px;
}

.trading-page-offering__body.trading-page-copy p:last-of-type {
    margin-bottom: 0;
}

.trading-page-offering__list-label {
    font-family: "Kanit", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #374151;
    margin: 18px 0 10px;
}

.trading-page-offering__list {
    margin: 0;
    padding-left: 1.25rem;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

.trading-page-offering__list li {
    margin-bottom: 6px;
}

.trading-page-offering__list li:last-child {
    margin-bottom: 0;
}

.trading-page-offering--tone-1 .trading-page-offering__icon {
    background: #f59e0b;
}

.trading-page-offering--tone-2 .trading-page-offering__icon {
    background: #2563eb;
}

.trading-page-offering--tone-3 .trading-page-offering__icon {
    background: #10b981;
}

.trading-page-offering--tone-4 .trading-page-offering__icon {
    background: #0ea5e9;
}

.trading-page-offering--tone-5 .trading-page-offering__icon {
    background: #8b5cf6;
}

/* Wide “all categories” style: copy left, circular arrow control */
.trading-page-card--cta {
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.trading-page-card--cta:hover {
    border-color: #d1d5db;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    color: inherit;
}

.trading-page-card--cta:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.trading-page-card--cta .trading-page-card__go {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 15px;
    transition: background 0.15s ease, color 0.15s ease;
}

.trading-page-card--cta:hover .trading-page-card__go {
    background: #e5e7eb;
    color: #374151;
}

.trading-page-card-wide {
    width: 100%;
}

.career-v2 {
    background: #fff;
}


.career-v2-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.career-v2-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #6b7280;
    background: #f4f5f7;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 14px;
}

.career-v2-heading h1 {
    font-size: 58px;
    line-height: 1.05;
    color: #0f2a1d;
    margin-bottom: 12px;
}

.career-v2-heading h1 span {
    color: var(--primary);
}

.career-v2-heading p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
}

.career-v2-overview {
    background: #f5f8ef;
    border-radius: 18px;
    padding: 34px 30px;
}

.career-v2-overview-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f2a1d;
    background: #eef5c9;
    border-radius: 999px;
    padding: 9px 16px;
    margin-bottom: 18px;
}

.career-v2-overview h2 {
    font-size: 48px;
    line-height: 1.02;
    color: #0f2a1d;
    margin-bottom: 18px;
}

.career-v2-overview h2 span {
    color: var(--primary);
}

.career-v2-overview>p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    max-width: 92%;
}

.career-v2-points {
    display: grid;
    gap: 14px;
}

.career-v2-point-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.career-v2-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #0f2a1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.career-v2-point-item h4 {
    font-size: 18px;
    margin: 0 0 4px;
    color: #0f2a1d;
}

.career-v2-point-item p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
}

.career-v2-job-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
}

.career-v2-job-card small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.career-v2-job-card h3 {
    font-size: 30px;
    color: #0f2a1d;
    margin-bottom: 12px;
}

.career-v2-job-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.career-v2-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #0f2a1d;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.career-v2-apply-btn:hover {
    background: #0f2a1d;
    color: #fff;
}

.career-v2-form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
    padding: 30px;
}

.career-v2-form-card h3 {
    background: #0f2a1d;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    font-size: 36px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.career-v2-form-card .form-control {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    min-height: 46px;
    box-shadow: none;
    padding: 10px 14px;
    font-size: 14px;
}

.career-v2-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(203, 227, 45, 0.2);
}

.career-v2-form-card textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.career-v2-form-card input[type="file"].form-control {
    padding: 10px 12px;
}

.career-v2-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #0f2a1d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 12px 16px;
}

.career-v2-submit-btn:hover {
    background: #0f2a1d;
    color: #fff;
}

.career-v2-benefits {
    background: #fff;
    padding-bottom: 80px;
}



.career-v2-benefits h2 {
    font-size: 52px;
    line-height: 1.1;
    color: #0f2a1d;
    margin: 14px 0 0;
}

.career-v2-benefits p {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.career-v2-benefit-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 25px;
    background: #fff;
    margin-top: 50px;
    min-height: 170px;
}

.career-v2-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f2a1d;
    color: var(--primary);
    flex-shrink: 0;
}

.career-v2-benefit-card h4 {
    font-size: 20px;
    margin: 0 0 4px;
    color: #0f2a1d;
}

.career-v2-benefit-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

@media (max-width: 768px) {
    .section-padding {
        margin-top: 70px;
    }

    .trading-page-main-title {
        font-size: 40px;
    }

    .trading-page-image {
        height: 220px;
    }

    .trading-page-mosaic:not(.trading-page-mosaic--reference) {
        min-height: 380px;
        max-height: none;
        --trading-mosaic-r: 28px;
        --trading-mosaic-gap: 10px;
        margin-top: 8px;
    }

    .trading-page-mosaic--reference {
        margin-top: 8px;
    }

    .trading-page-mosaic__reference-img {
        height: 380px;
        min-height: 380px;
        object-fit: cover;
        object-position: center;
    }

    .career-v2-heading h1 {
        font-size: 42px;
    }

    .career-v2-overview {
        padding: 24px 20px;
    }



    .career-v2-overview > p {
        font-size: 16px;
        max-width: 100%;
    }

    .career-v2-job-card h3 {
        font-size: 26px;
    }

    .career-v2-form-card h3 {
        font-size: 28px;
    }

    .career-v2-benefits h2 {
        font-size: 36px;
    }
}



@media (min-width: 100px) and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .title {
        font-size: 45px;
        font-weight: 500;
    }
    .title br{
        display: none;
    }
    .slide-timeline.slide-timeline-fixed{
        display: none;
    }
    .floating-stats-card{
        display: none;
    }
    .about-main-img {
        height: 270px;
    }
    .common-heading {
        font-size: 35px;
        line-height: 40px;
    }
    .common-heading br{
        display: none;
    }
    .about-desc{
        max-width: 100%;
    }
    .funfacts-left {
        min-height: 170px;
    }
    .funfacts-number {
        font-size: 40px;
    }
    .funfacts-text {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0px;
    }
    .services-advanced-section {
        padding: 70px 0px;
    }
    .collage-wrapper {
        min-height: 220px;
    }
    .feature-title {
        font-size: 24px;
        font-weight: 400 !important;
    }
    .cta-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 67%);
    }
    .footer-v3-cta-title {
        font-size: 28px !important;

        font-weight: 300 !important;
    }
    .footer-v3-connect-lead {
  
        font-size: 31px !important;
        max-width: 100%;
    }
    .footer-v3-connect-form input {
        flex: 1 1 70px;
    }
    .brand-logo {
        height: 52px;
    }
    .about-page-banner .title{
        font-size: 25px;
    }
    .about-page-banner .title br{
        display: none;
    }
    .about-ref-block {
        margin-bottom: 0px;
    }
    .about-ref-stats {
        padding: 70px 0px;
    }
    .about-ref-stat h4 {
        font-size: 40px;
    }
    .trading-page-mosaic {
        height: 280px;
        margin-top: 30px !important;
    }
    .trading-page-mosaic:not(.trading-page-mosaic--reference){
        min-height: 280px;
    }
    .career-v2-benefit-card {
        display: block;
    }
    .career-v2-benefit-icon {
        margin-bottom: 10px;
    }
    .career-v2-overview h2 {
        font-size: 35px;
    }
    .contact-v3-top {
        margin: 0 auto 50px;
    }
    .contact-v3-form-card h3 {
        font-size: 30px;
    }
    .contact-v3-form-card {
        padding: 40px 20px;
    }
    .contact-v3-details h3 {
        font-size: 30px;
        margin-top: 40px;
    }
    .app-header {
        padding: 10px 0px;
    }
    .app-header .main-nav.show .header-action {
        margin-top: 0rem !important;
    }
    .service-card-title {
        font-size: 27px;
        font-weight: 400 !important;
    }
}