html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


li {
    margin-bottom: 0;
    font-size: 18px;
}

p {
    margin-bottom: 0;
    font-size: 18px;
}

.biggerh1 {
    font-size: 130px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

h1 {
    font-size: 68px;
    font-style: normal;
}

h2 {
    font-size: 38px;
    font-style: normal;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

.home_main_header_image_area {
    display: block;
    position: relative;
}

.home_main_header_image_area img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.about_home_main_header_image_area {
    display: block;
    position: relative;
}

.about_home_main_header_image_area img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.more_icon_iteams {
    display: flex;
    position: relative;
    align-items: center;
    gap: 0;
}

/* ===== Header Side Icons ===== */
.header_side_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 15px;
    height: 90px;
    transition: opacity 0.3s ease;
}

.header_side_icon:hover {
    opacity: 0.7;
}

.header_side_icon img {
    width: 20px;
    height: 20px;
}

/* ===== Icon Separator ===== */
.icon_separator {
    display: block;
    width: 1px;
    height: 20px;
    flex-shrink: 0;
}

.header-transparent .icon_separator {
    background-color: rgba(255, 255, 255, 0.3);
}

.header-white .icon_separator {
    background-color: rgba(0, 0, 0, 0.3);
}

/* ===== Language Switcher ===== */
.lang_switcher {
    position: relative;
    gap: 6px;
    user-select: none;
}

.lang_code {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
}

.header-transparent .lang_code {
    color: #ffffff;
}

.header-white .lang_code {
    color: #1c1c1c;
}

.lang_arrow {
    width: 12px !important;
    height: 12px !important;
    transition: transform 0.3s ease;
}

.lang_switcher .lang_dropdown.open~.lang_arrow,
.lang_dropdown.open+.lang_arrow {
    transform: rotate(180deg);
}

/* ===== Language Dropdown ===== */
.lang_dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.lang_dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang_option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.lang_option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.lang_flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== Search Overlay ===== */
.search_overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 90px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
}

.search_overlay.active {
    width: 100%;
}

.search_overlay_form {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    gap: 15px;
}

.search_overlay_input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #666666 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 300;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
    outline: none;
    font-family: 'NeueHaas', sans-serif;
    letter-spacing: 0.5px;
}

.search_overlay_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 18px;
}

.search_overlay_input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.7) !important;
}

.search_overlay_submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search_overlay_submit:hover {
    opacity: 1;
}

.search_overlay_submit img {
    width: 20px;
    height: 20px;
}

.search_overlay_close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.search_overlay_close:hover {
    opacity: 1;
}

/* ===== Nav Scroll (Sticky Header) States ===== */
.nav-scroll .icon_separator {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-scroll .lang_code {
    color: #222;
}

.nav-scroll .header_side_icon img {
    filter: brightness(0);
}

.nav-scroll .lang_arrow {
    filter: brightness(0);
}

.nav-scroll .search_overlay {
    background: rgba(255, 255, 255, 0.98);
}

.nav-scroll .search_overlay_input {
    color: #222 !important;
    border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}

.nav-scroll .search_overlay_input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.nav-scroll .search_overlay_input:focus {
    border-bottom-color: rgba(0, 0, 0, 0.5) !important;
}

.nav-scroll .search_overlay_submit img {
    filter: brightness(0);
}

.nav-scroll .search_overlay_close {
    color: #222;
}

/* ===== Responsive — Mobile Header (<992px) ===== */
@media screen and (max-width: 991px) {

    /* ── Mobile header bar ──────────────────────────── */
    .smart_new_navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px 0 15px;
        border-radius: 12px;
        height: 60px;
        /* slightly slimmer for floating island */
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto !important;
        margin: 0 !important;
        z-index: 999;
        transition: background 0.35s ease, box-shadow 0.35s ease;
    }

    /* Scrolled / sticky state */
    .nav-scroll .smart_new_navbar {
        background: #ffffff !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05); /* Slightly darker/elevated on scroll */
        height: 60px;
    }

    /* White-background pages */
    .header-white.smart_new_navbar {
        background: #ffffff;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04); /* Floating island perfect shadow */
    }

    /* Transparent-background pages are forced to white on mobile */
    .header-transparent.smart_new_navbar {
        background: #ffffff;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04); /* Floating island perfect shadow */
    }

    .smart_new_navbar .logo-img {
        content: url('../upload/assets/black-logo.svg') !important;
        filter: none !important;
    }

    .header-transparent .header_side_icon.search_bar_icon img,
    .header-transparent .header_side_icon.bookmark_icon img,
    .header-transparent .header_side_icon.lang_switcher img {
        filter: invert(1);
    }

    .header-transparent .icon_separator {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .header-transparent .lang_code {
        color: #1c1c1c;
    }

    /* ── Logo ──────────────────────────────────────── */
    .logo-wrapper {
        float: none;
        padding: 0;
        z-index: 1;
        flex-shrink: 0;
    }

    .logo-img {
        width: 120px;
        display: block;
        margin: 0;
        padding: 0;
    }

    /* ── Hamburger button ──────────────────────────── */
    .navbar-toggler {
        position: relative;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        cursor: pointer;
        flex-shrink: 0;
        z-index: 1001;
        /* Above the menu so it can close it */
    }

    /* ── Minimalist Hamburger Icon ─────────────────── */
    .menu-icon {
        width: 26px;
        height: 10px;
        /* Slim and minimal profile */
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-icon span {
        display: block;
        position: absolute;
        width: 100%;
        height: 1.5px;
        /* Extremely sharp and clean */
        border-radius: 0;
        /* Minimalist sharp edges */
        left: 0;
        transition:
            transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
            opacity 0.3s ease,
            background-color 0.3s ease;
        transform-origin: center;
    }

    /* Position the 3 spans (hide the 2nd for a pure 2-line minimal look) */
    .navbar-toggler .menu-icon span:nth-child(1) {
        top: 0;
    }

    .navbar-toggler .menu-icon span:nth-child(2) {
        display: none;
        /* Hide middle line for minimalism */
    }

    .navbar-toggler .menu-icon span:nth-child(3) {
        bottom: 0px;
    }

    /* Default: white pages or mobile transparent header forced to dark lines */
    .header-transparent .menu-icon span {
        background-color: #1a1a1a;
    }

    /* Dark lines for white-bg pages */
    .header-white .menu-icon span {
        background-color: #1a1a1a;
    }

    /* Sticky header always gets dark lines */
    .nav-scroll .menu-icon span {
        background-color: #1a1a1a;
    }

    /* ── Hamburger → X animation for 2 lines ───────── */
    .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(1) {
        transform: translateY(4.25px) rotate(45deg);
        background-color: #1a1a1a !important;
    }

    /* We skip child(2) because it's hidden */
    .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(3) {
        transform: translateY(-4.25px) rotate(-45deg);
        background-color: #1a1a1a !important;
    }

    /* ── Side icons strip (search / bookmark / lang) ── */
    .more_icon_iteams {
        position: absolute;
        right: 70px;
        top: 0;
        bottom: 0;
        height: 100%;
        z-index: 2;
        gap: 0;
        display: flex;
        align-items: center;
        transition: opacity 0.3s ease;
    }

    /* Hide right icons when menu is open to keep it clean */
    .navbar-collapse.show~.more_icon_iteams {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header_side_icon {
        padding: 0 10px;
        height: 100%;
    }

    /* Search overlay — premium dropdown */
    .search_overlay {
        height: auto;
        padding: 15px 20px;
        position: fixed;
        top: 90px;
        /* Below the floating header (20+60+10) */
        left: 20px;
        right: 20px;
        width: auto !important;
        z-index: 1100;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        transform: translateY(-20px) scale(0.98);
        border-radius: 16px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .search_overlay.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        width: auto !important;
    }

    /* Language dropdown opens downward */
    .lang_dropdown {
        top: 70px;
        right: -10px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* ── Mobile backdrop overlay ────────────────────── */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ── Mobile drawer (navbar-collapse) ───────────── */
    .navbar .navbar-collapse {
        position: fixed;
        top: 80px;
        /* Start below the pill */
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto !important;
        height: calc(100dvh - 110px) !important;
        border-radius: 8px;
        background: #ffffff;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000;
        padding: 0 0 40px 0;
        display: block !important;
        /* Override Bootstrap */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        /* Scale and fade for floating card feeling */
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        transition:
            transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.4s ease,
            visibility 0.4s ease;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .navbar .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar .navbar-collapse.show {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    /* When closing or opening, disable Bootstrap's JavaScript-based height animation
       and force it to finish instantly so our custom CSS transition on .collapse can take over */
    .navbar .navbar-collapse.collapsing {
        height: calc(100dvh - 110px) !important;
        transition: none !important;
        display: block !important;
    }

    /* ── Nav list ───────────────────────────────────── */
    .navbar .navbar-nav {
        padding: 0;
    }

    /* ── Nav items — staggered entrance animation ───── */
    .navbar .nav-item {
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity 0.4s ease,
            transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.20s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.30s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        opacity: 1;
        transform: none;
        transition-delay: 0.35s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        opacity: 1;
        transform: none;
        transition-delay: 0.40s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) {
        opacity: 1;
        transform: none;
        transition-delay: 0.45s;
    }

    /* ── Nav links ──────────────────────────────────── */
    .navbar .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.01em;
        color: #1a1a1a !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: visible;
        position: relative;
    }

    /* Disable desktop hover pseudo-element on mobile */
    .navbar .navbar-nav .nav-link::after {
        display: none !important;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link:focus {
        color: #D24C0A !important;
        background: #faf9f8;
        padding-left: 36px;
    }

    .navbar .navbar-nav .nav-link.active {
        color: #D24C0A !important;
        font-weight: 500;
        background: #faf9f8;
        padding-left: 36px;
        box-shadow: inset 4px 0 0 #D24C0A;
        border-bottom-color: rgba(210, 76, 10, 0.08);
    }

    .mob-pad-top {
        padding-top: 8px;
    }

    /* ── Dropdown chevron (ti-angle-down) ───────────── */
    .dropdown .nav-link i.ti-angle-down {
        color: #888 !important;
        font-size: 11px !important;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
        padding: 4px;
        /* easier to tap */
    }

    .navbar .navbar-nav .dropdown.show>.nav-link i.ti-angle-down {
        transform: rotate(180deg);
        color: #D24C0A !important;
    }

    /* ── Mobile dropdown menus ──────────────────────── */
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #faf9f8;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .navbar .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 16px 28px 16px 45px;
        font-size: 15px;
        line-height: 1.4;
        color: #555;
        font-weight: 400;
        background: transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .navbar .dropdown-menu .dropdown-item::before {
        content: '';
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%) scale(0);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #D24C0A;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar .dropdown-menu .dropdown-item span {
        font-size: 15px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .navbar .dropdown-menu .dropdown-item:hover,
    .navbar .dropdown-menu .dropdown-item:focus {
        color: #1a1a1a;
        background-color: #f1efec;
    }

    .navbar .dropdown-menu .dropdown-item:hover::before,
    .navbar .dropdown-menu .dropdown-item:focus::before {
        transform: translateY(-50%) scale(1);
    }

    .navbar .dropdown-menu .dropdown-item:hover span,
    .navbar .dropdown-menu .dropdown-item:focus span {
        transform: translateX(4px);
    }

    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 12px;
        background: #f4f2f0;
    }

    .navbar .dropdown-submenu .dropdown-menu .dropdown-item {
        padding-left: 45px;
        font-size: 14px;
        color: #555;
    }

    /* ── Page-body scroll lock ──────────────────────── */
    body.noscroll {
        overflow: hidden;
    }
}

/* ── Very small phones ─────────────────────────────── */
@media screen and (max-width: 440px) {
    .header_side_icon {
        padding: 0 8px;
    }

    .lang_code {
        font-size: 13px;
    }

    .header_side_icon img {
        width: 18px;
        height: 18px;
    }

    .smart_new_navbar {
        padding: 0 16px;
    }

    .more_icon_iteams {
        right: 60px;
    }
}

.home_main_header_content_area {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
}


.main_about_header_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.main_home_header_content {
    width: 100%;
}

.main_about_header_content {
    width: 100%;
}

.header_left_content {
    text-align: left;
}

.header_center_content {
    text-align: center;
}


.home_home_main_subtitle_area {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    min-height: 48px;
    /* To give the absolute icon room */
}

.home_home_main_subtitle_area img {
    height: 34px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.home_home_main_subtitle_area h6 {
    color: #ffffff;
    letter-spacing: 0.40em;
    margin: 0;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
    z-index: 2;
    font-size: 12px;
}

.header_left_content h1 {
    color: #ffffff;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

.header_center_content h1 {
    color: #ffffff;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}


.play_pause_btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play_pause_btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.pause_lines {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 4px;
    margin-left: 4px;
    font-weight: 300;
}

.about_hero_image_area {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about_hero_image_area img {
    max-width: 100%;
}

/* --- APCI Custom Bracket Button --- */
.apci_custom_btn {
    display: inline-flex;
    align-items: center;
    background-color: #F5F3F1;
    height: 48px;
    padding: 0 24px;
    text-decoration: none !important;
    position: relative;
    margin-top: 80px;
    border: none;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn .apci_btn_icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    height: 100%;
}

.apci_custom_btn .apci_btn_icon img {
    height: 100%;
    width: auto;
}

.apci_custom_btn .btn_text {
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.15em;
    font-weight: 400;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.apci_custom_btn .btn_arrow {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn .btn_arrow svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
    transition: stroke 0.4s ease;
}

.apci_custom_btn:hover {
    background-color: #EBE8E3;
}

.apci_custom_btn:hover .btn_text {
    color: #1C1C1C;
}

.apci_custom_btn:hover .btn_arrow {
    transform: translateX(8px);
}

.apci_custom_btn:hover .btn_arrow svg {
    stroke: #D24C0A;
}


/* Custom Button 2 */


/* --- APCI Custom Bracket Button --- */
.apci_custom_btn2 {
    display: inline-flex;
    align-items: center;
    background-color: #101010;
    height: 48px;
    padding: 0 24px;
    text-decoration: none !important;
    position: relative;
    margin-top: 0;
    border: none;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn2 .apci_btn_icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    height: 100%;
}

.apci_custom_btn2 .apci_btn_icon img {
    height: 100%;
    width: auto;
}

.apci_custom_btn2 .btn_text {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.15em;
    font-weight: 400;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.apci_custom_btn2 .btn_arrow {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.apci_custom_btn2 .btn_arrow svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    transition: stroke 0.4s ease;
}

.apci_custom_btn2:hover {
    background-color: #1A1A1A;
}

.apci_custom_btn2:hover .btn_text {
    color: #ffffff;
}

.apci_custom_btn2:hover .btn_arrow {
    transform: translateX(8px);
}

.apci_custom_btn2:hover .btn_arrow svg {
    stroke: #D24C0A;
}





.pl-120 {
    padding-left: 120px;
}

.about_hero_content_area {
    display: block;
    position: relative;
}

.about_hero_content_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

.secondary_bg {
    background-color: #F5F3F1;
}

.collection_slider_area h2 {
    color: #000;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

/* --- Animated Collection Tab Buttons --- */
.collection_tab_btns_area {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    /* margin-bottom: 20px; */
}

.tabs_container {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 50px;
    position: relative;
    padding: 4px;
}

.tab_btn {
    background-color: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 400;
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    outline: none;
    line-height: 100%;
}

.tab_btn.active {
    color: #ffffff;
}

.tab_slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background-color: #000000;
    border-radius: 50px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Collection Swiper Panels --- */
.collection_swiper_panel {
    display: none;
    /* margin-top: 10px; */
}

.collection_swiper_panel.active {
    display: block;
}

.collection_swiper_wrapper {
    overflow: visible;
}

.swiper-container.collection_swiper {
    overflow: visible !important;
    touch-action: pan-y;
}

.collection_swiper .swiper-slide {
    height: auto;
}

/* --- Collection Card --- */
.collection_card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.collection_card img {
    width: 100%;
    /* height: 380px; */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.collection_card_label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.card_arrow {
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.collection_card:hover .card_arrow {
    opacity: 1;
}

/* --- Collection Scrollbar --- */
.collection_scrollbar {
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin: 80px auto 0;
    position: relative;
}

.collection_scrollbar.swiper-scrollbar-lock {
    display: block !important;
}

.collection_scrollbar .swiper-scrollbar-drag {
    background: #1a1a1a;
    border-radius: 4px;
}

.pt-80 {
    padding-top: 80px;
}

.home_application_based_header_area {
    display: block;
    position: relative;
}

.home_application_based_header_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-top: 0;
}

.home_application_based_content_area {
    display: block;
    position: relative;
}

.home_application_based_content_area p {
    color: #666;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 0.02em;
}

.card_arrow img {
    width: 30px;
}

.collection_card_label span {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

/* Application Slider Styles */
.application_based_collection_area {
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 100px;
    z-index: 1;
}

.application_based_collection_area::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* Assuming native desktop height around 560px, half is 280px + 40px padding = 320px */
    top: 320px;
    background-color: #F5F3F1;
    z-index: -1;
}

.application_swiper {
    width: 100%;
    overflow: hidden !important;
    touch-action: pan-y;
}

.app_card_img img {
    width: 100%;
    /* height: 560px; */
    object-fit: cover;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.app_card_content {
    margin: 20px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.app_card_left {
    display: flex;
    width: 60%;
    align-items: flex-start;
}

.app_number {
    margin-right: 40px;
    color: #000;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0;
}

.app_title {
    font-weight: 300;
    color: #000;
    margin-bottom: 0;
}

.app_card_right {
    width: 40%;
}

.app_subtitle {
    font-weight: 400;
    color: #1C1C1C;
    margin-bottom: 15px;
    line-height: 1.2;
}

.app_desc {
    color: #666;
    line-height: 1.2;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .application_based_collection_area::before {
        top: 215px;
        /* Half of 350px img + 40px padding */
    }

    .app_slide.swiper-slide {
        flex-direction: column;
    }

    .app_card_content {
        flex-direction: column;
    }

    .app_card_left,
    .app_card_right {
        width: 100%;
    }

    .app_card_right {
        margin-top: 20px;
    }


    .app_card_img img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .application_based_collection_area::before {
        top: 190px;
        /* Half of 300px img + 40px padding */
    }

    .app_card_img img {
        height: 300px;
    }
}

.recent_projects_showcase_header_area {
    display: block;
    position: relative;
}

.recent_projects_showcase_header_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 80px;
}

.projects_blocks_line {
    border-bottom: 1px solid #ddd;
}

/* Projects Showcase Layout */
.projects_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
}

.projects_dot {
    width: 10px;
    height: 10px;
    background-color: #D24C0A;
    border-radius: 50%;
    display: inline-block;
}

.projects_static_list {
    display: flex;
    gap: 30px;
    width: 100%;
}

.projects_showcase_area {
    overflow-x: hidden;
}

.static_card {
    flex: 1;
    min-width: 0;
}

.project_card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    /* border-radius if needed: border-radius: 16px; */
}

.project_categories {
    color: #666;
    margin-bottom: 8px;
    font-weight: 300;
}

.project_link {
    font-size: 16px;
    color: #1C1C1C;
    font-weight: 400;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.project_link:hover {
    color: #D24C0A;
}

.dark_bg {
    background-color: #101010;
}

.blog_news_home_header_area {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.blog_news_header {
    display: block;
    position: relative;
}

.blog_news_header h2 {
    color: #F5F3F1;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

.main_home_single_blog_area {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1A1A1A;
}

.main_home_single_blog_image_area {
    display: block;
    position: relative;
}

.main_home_single_blog_image_area img {
    width: 100%;
}

.main_home_single_blog_content_area {
    padding: 30px 20px;
}

.main_home_single_blog_content_area h6 {
    color: #7E7E7E;
    margin-bottom: 24px;
}

.main_home_single_blog_content_area h4 {
    color: #F5F3F1;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 50px;
}

.main_home_single_blog_content_area a {
    color: #F5F3F1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.15em;
    display: inline-flex;
    gap: 30px;
    align-items: center;
    padding: 13px 24px;
    border: 1px solid #3E3E3E;
}

.main_home_single_blog_content_area a img {
    width: 20px;
}

footer {
    padding-top: 80px;
    background-color: #F5F3F1;
}

.footer_top_header_area {
    display: block;
    position: relative;
}

.footer_top_header_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

.footer_top_area {
    padding-top: 100px;
}

.footer_social_single_links_area {
    display: block;
    position: relative;
    padding: 0 15px;
}

.footer_social_single_links_area a {
    display: flex;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 20px;
    padding-top: 20px;
}

.footer_social_links_name {
    display: flex;
    position: relative;
    gap: 20px;
    align-items: center;
}

.footer_social_links_name img {
    width: 30px;
}

.footer_social_links_name p {
    color: #1C1C1C;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}


.footer_social_area>.col-lg-4:nth-child(n+4) .footer_social_single_links_area a {
    padding-bottom: 0;
    border-bottom: none;
}

/* Remove LEFT padding (1st, 4th, ...) */
.footer_social_area>.col-lg-4:nth-child(3n+1) .footer_social_single_links_area {
    padding-left: 0;
}

/* Remove RIGHT padding (3rd, 6th, ...) */
.footer_social_area>.col-lg-4:nth-child(3n) .footer_social_single_links_area {
    padding-right: 0;
}

.footer_links_area {
    padding-top: 120px;
}

.footer_quick_links_header {
    display: flex;
    position: relative;
    gap: 12px;
    margin-bottom: 30px;
}

.footer_quick_links_header h5 {
    margin-bottom: 0;
    color: #1C1C1C;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.footer_quick_links_header img {
    width: 24px;
}

.footer_quick_links_link {
    display: block;
    position: relative;
}

.footer_quick_links_link ul {
    padding-left: 0;
    margin: 0;
}

.footer_quick_links_link ul li a {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 139%;
}

/* Footer Copyright Area */
.footer_copyright_area {
    padding: 30px 0;
    margin-top: 80px;
    background-color: #fff;
}

.footer_copyright_left {
    display: flex;
    align-items: center;
}

.footer_copyright_logo img {
    height: 48px;
    width: auto;
}

.footer_copyright_divider {
    height: 30px;
    width: 1px;
    background-color: #D8D8D8;
    margin: 0 50px;
}

.footer_copyright_links {
    display: flex;
    gap: 50px;
}

.footer_copyright_links a {
    color: #666;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_copyright_links a:hover {
    color: #1a1a1a;
}

.footer_copyright_right {
    text-align: right;
}

.footer_copyright_right p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}

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

@media (max-width: 991px) {
    .footer_copyright_left {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer_copyright_divider {
        display: none;
    }

    .footer_copyright_right {
        text-align: center;
        margin-top: 30px;
    }
}

.about_hero_content_area p {
    margin: 50px 0;
    color: #666;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.about_hero_content_area p b {
    color: #1C1C1C;
    font-weight: 400;
}

.about_hero_content_btn_area {
    display: block;
    position: relative;
}

.about_hero_content_btn_area a {
    display: flex;
    justify-content: space-between;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 18px;
    padding: 20px 0;
    border-top: 1px solid #DDDDDD;
}

.about_hero_content_btn_area a:last-child {
    border-bottom: 1px solid #DDDDDD;
}

.about_hero_content_btn_area a img {
    width: 24px;
}

.apci_timeline_header_area {
    display: block;
    position: relative;
}

.apci_timeline_header_area h2 {
    color: #F5F3F1;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

/* --- APCI About Timeline Styles --- */
.apci_main_timeline_area {
    display: block;
    position: relative;
    margin-top: 180px;
    overflow: hidden;
}

.timeline_nav_wrapper {
    margin-bottom: 40px;
}

.timeline-nav-buttons .timeline-prev,
.timeline-nav-buttons .timeline-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-nav-buttons .timeline-prev:hover,
.timeline-nav-buttons .timeline-next:hover {
    border-color: #F5F3F1;
}

.timeline-nav-buttons svg {
    width: 16px;
    height: 16px;
    stroke: #F5F3F1;
    fill: none;
    stroke-width: 2;
    /* Set explicit stroke width for consistency */
}

.apci_timeline_swiper {
    position: relative;
    width: 100%;
    overflow: visible !important;
    /* Padding-left will be dynamically set by JS */
}

/* The continuous background line */
.apci_timeline_swiper::before {
    content: "";
    position: absolute;
    left: -100vw;
    right: -100vw;
    top: 155px;
    /* Adjust according to year text height to align with node */
    border-bottom: 1px solid #333;
    z-index: 1;
}

.timeline_slide {
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

/* Big Year for Active Slide */
.timeline_year_big {
    font-size: 160px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin: 0;
    height: 150px;
    /* Fixed height to keep node aligned */
    display: flex;
    align-items: flex-end;

    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

/* Small Year for Inactive Slide */
.timeline_small_year {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1;
    margin: 0;
    height: 150px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
    /* Offset above dot */

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    position: absolute;
    top: 0;
    left: 0;
}

/* The Timeline Node (Dot) Area */
.timeline_node {
    width: 100%;
    height: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.timeline_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Description Area */
.timeline_desc {
    margin-top: 50px;
    font-size: 18px;
    color: #F5F3F1;
    font-weight: 300;
    line-height: 1.5;
    max-width: 500px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
    transition-delay: 0.15s;
}

/* --- Active Slide States --- */
.timeline_slide.swiper-slide-active .timeline_year_big {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -70px);
}

.timeline_slide.swiper-slide-active .timeline_small_year {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.timeline_slide.swiper-slide-active .timeline_dot {
    background-color: #D24C0A;
    /* Orange accent color */
    transform: scale(1.2);
}

.timeline_slide.swiper-slide-active .timeline_desc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .apci_main_timeline_area {
        margin-top: 140px;
    }

    .timeline_year_big {
        font-size: 120px;
        height: 120px;
    }

    .timeline_small_year {
        height: 120px;
    }

    .apci_timeline_swiper::before {
        top: 125px;
    }

    .timeline_slide {
        width: 300px;
    }

    .timeline_desc {
        max-width: 400px;
        font-size: 16px;
        margin-top: 40px;
    }

    .timeline_slide.swiper-slide-active .timeline_year_big {
        transform: translate(0, -50px);
    }
}

@media (max-width: 991px) {
    .apci_main_timeline_area {
        margin-top: 100px;
    }

    .timeline_year_big {
        font-size: 80px;
        height: 100px;
    }

    .timeline_small_year {
        height: 100px;
    }

    .apci_timeline_swiper::before {
        top: 105px;
    }

    .timeline_slide {
        width: 260px;
    }

    .timeline_desc {
        max-width: 320px;
        font-size: 15px;
        margin-top: 30px;
    }

    .timeline_slide.swiper-slide-active .timeline_year_big {
        transform: translate(0, -40px);
    }

    .timeline-nav-buttons .timeline-prev,
    .timeline-nav-buttons .timeline-next {
        width: 40px;
        height: 40px;
    }

    .timeline-nav-buttons svg {
        width: 14px;
        height: 14px;
    }

    .timeline_nav_wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .apci_main_timeline_area {
        margin-top: 60px;
    }

    .timeline_year_big {
        font-size: 56px;
        height: 70px;
    }

    .timeline_small_year {
        height: 70px;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .apci_timeline_swiper::before {
        top: 75px;
    }

    .timeline_slide {
        width: 220px;
    }

    .timeline_desc {
        max-width: 260px;
        font-size: 14px;
        margin-top: 24px;
        line-height: 1.45;
    }

    .timeline_slide.swiper-slide-active .timeline_year_big {
        transform: translate(0, -30px);
    }

    .timeline-nav-buttons .timeline-prev,
    .timeline-nav-buttons .timeline-next {
        width: 36px;
        height: 36px;
    }

    .timeline-nav-buttons svg {
        width: 12px;
        height: 12px;
    }

    .timeline_nav_wrapper {
        margin-bottom: 20px;
    }

    .timeline_dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 440px) {
    .apci_main_timeline_area {
        margin-top: 40px;
    }

    .timeline_year_big {
        font-size: 72px;
        height: 56px;
    }

    .timeline_small_year {
        height: 56px;
        font-size: 13px;
        padding-bottom: 8px;
    }

    .apci_timeline_swiper::before {
        top: 61px;
    }

    .timeline_slide {
        width: 250px;
    }

    .timeline_desc {
        max-width: 230px;
        font-size: 14px;
        margin-top: 20px;
    }

    .timeline_slide.swiper-slide-active .timeline_year_big {
        transform: translate(0, -22px);
    }
}

.apci_mission_vision_header_area {
    display: block;
    position: relative;
    margin-bottom: 140px;
}

.apci_mission_vision_header_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}

.with-line {
    position: relative;
}

.with-line::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -9999px;
    right: 0;
    height: 1px;
    background: #ccc;
}

.with-line::before {
    content: "";
    position: absolute;
    bottom: -54px;
    right: 0;
    width: 10px;
    height: 10px;
    background: #D24C0A;
    border-radius: 50%;
    z-index: 999;
}

.apci_mission_vision_content_desc_area {
    display: block;
    position: relative;
}

.apci_mission_vision_content_desc_area p {
    color: #666;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    width: 420px;
}

.apci_mission_vision_content_desc_area p b {
    color: #1C1C1C;
    font-weight: 400;
}

.apci_mission_vision_content_desc_area p+p {
    margin-top: 60px;
}

.apci_mission_vision_image_area {
    display: block;
    position: relative;
}

.apci_mission_vision_image_area img {
    width: 100%;
}





.core_values_points_area_left_single_area {
    display: flex;
    position: relative;
    gap: 90px;
    padding: 60px 0;
}

.col-lg-4 .core_values_points_area_left_single_area:first-child {
    padding-top: 0;
}

.core_values_points_icon_image {
    display: block;
    position: relative;
}

.core_values_points_icon_image img {
    width: 60px;
}

.core_values_points_desc_area {
    display: block;
    position: relative;
}

.core_values_points_desc_area h4 {
    color: #1C1C1C;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 40px;
}

.core_values_points_desc_area p {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.core_values_points_wrapper {
    position: relative;
}

.core_values_points_wrapper::before {
    content: "";
    position: absolute;
    top: -100px;
    bottom: 0;
    left: 30px;
    width: 1px;
    background: #ccc;
}





.core_values_points_area_left_single_area {
    position: relative;
}

.core_values_points_area_left_single_area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    /* Break out of container */
    right: calc(-50vw + 50%);
    height: 1px;
    background: #ddd;
}


.apci_tech_machine_header_area {
    display: block;
    position: relative;
}

.apci_tech_machine_header_area h2 {
    color: #F5F3F1;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 0;
}



.tech_logo_section_header {
    padding: 80px 0 60px 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}

.machinery_company_logo_area {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
    gap: 40px;
    padding: 60px 0 80px 0;
}

.single_machinery_logo_image_area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.single_machinery_logo_image_area img {
    max-height: 70px;
    max-width: 150px;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .machinery_company_logo_area {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 50px 0 60px 0;
    }

    .single_machinery_logo_image_area img {
        max-height: 60px;
        max-width: 140px;
    }
}

@media (max-width: 767px) {
    .machinery_company_logo_area {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 40px 0 50px 0;
    }

    .single_machinery_logo_image_area img {
        max-height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 575px) {
    .machinery_company_logo_area {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        padding: 60px 0;
    }

    .single_machinery_logo_image_area:last-child {
        grid-column: 1 / -1;
    }

    .single_machinery_logo_image_area img {
        max-height: 45px;
        max-width: 120px;
    }
}

@media (max-width: 440px) {
    .machinery_company_logo_area {
        gap: 30px 20px;
    }

    .single_machinery_logo_image_area img {
        max-height: 50px;
        max-width: 140px;
    }
}

.apci_certification_header_area {
    display: block;
    position: relative;
}

.apci_certification_header_area h2 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}

.certification_table_wrapper {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification_table_header {
    display: flex;
    background: #F5F3F1;
    padding: 30px 40px;
}

.certification_table_header .cert_col {
    font-size: 24px;
    font-weight: 400;
    color: #1C1C1C;
    align-content: center;
    line-height: 1;
}

.certification_row {
    display: flex;
    padding: 40px 25px;
    border-bottom: 2px solid #F5F3F1;
    align-items: center;
    transition: background-color 0.3s ease;
    background: #FFF;
}

.certification_row:last-child {
    border-bottom: none;
}

.certification_row:hover {
    background-color: #fafafa;
}

.cert_col {
    padding: 0 20px;
}

.logo_col {
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_col img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.certification_row:hover .logo_col img {
    filter: grayscale(0);
    opacity: 1;
}

.code_col {
    flex: 0 0 320px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 100%;
}

.desc_col {
    flex: 1;
    font-size: 16px;
    color: #666;
    line-height: 130%;
    font-weight: 400;
}

/* --- Responsive Fixes --- */
@media screen and (max-width: 1200px) {
    .code_col {
        flex: 0 0 250px;
    }

    .logo_col {
        flex: 0 0 180px;
    }
}

.certification_table_body {
    padding: 0 15px 15px 15px;
    background: #F5F3F1;
}

.certification_table_body .certification_row:first-child {
    border-radius: 10px 10px 0 0;
}


.certification_table_body .certification_row:last-child {
    border-radius: 0 0 10px 10px;
}

.certification_table_body {
    padding: 0 15px 15px 15px;
    background: #F5F3F1;
}

.certification_table_body .certification_row:first-child {
    border-radius: 10px 10px 0 0;
}


.certification_table_body .certification_row:last-child {
    border-radius: 0 0 10px 10px;
}

.sub_pages_header_area {
    background-color: #F5F3F1;
    padding-top: 150px;
    padding-bottom: 80px;
}

.apci_subpage_breadcumb_list_area ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.apci_subpage_breadcumb_list_area ul li,
.apci_subpage_breadcumb_list_area ul li a {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.apci_subpage_breadcumb_list_area ul li.active {
    color: #1c1c1c;
    font-weight: 400;
}

.apci_subpage_breadcumb_list_area ul li img {
    width: 14px;
}

.apci_subpage_header_info_area {
    display: block;
    position: relative;
    padding-top: 120px;
}

.apci_subpage_header_info_area h1 {
    color: #1C1C1C;
    leading-trim: both;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.apci_subpage_header_info_area p {
    color: #7E7E7E;
    font-style: normal;
    font-weight: 300;
}

.apci_contact_form_wrapper {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.apci_contact_form_header {
    display: flex;
    background: #F5F3F1;
    padding: 30px 60px;
}

.apci_contact_form_header {
    display: block;
    position: relative;
}

.apci_contact_form_header h4 {
    color: #1C1C1C;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 0;
    font-size: 24px;
}

.apci_contact_form_body {
    padding: 0 15px 15px 15px;
    background-color: #F5F3F1;
}

.apci_contact_form_area {
    background-color: #fff;
    padding: 50px 45px;
    border-radius: 10px;
}

#inquiryForm input[type="password"],
#inquiryForm input[type="email"],
#inquiryForm input[type="text"],
#inquiryForm input[type="file"],
#inquiryForm textarea {
    border: none !important;
    border-bottom: 1px dashed #CCCCCC !important;
    margin-bottom: 30px;
    padding-left: 0;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-left: 5px;
    margin-right: 5px;
}


#inquiryForm select {
    border: none !important;
    border-bottom: 1px dashed #CCCCCC !important;
    margin-bottom: 30px;
    padding-left: 0;
    width: 100%;
    color: #aaaaaa !important;
    font-size: 16px !important;
}

#inquiryForm select:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

#inquiryForm input::placeholder,
#inquiryForm textarea::placeholder {
    color: #aaaaaa;
    font-size: 16px;
}

#inquiryForm select option[disabled] {
    color: #aaaaaa !important;
    font-size: 16px !important;
}

.contact_form_content_btn button {
    color: #F5F3F1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.15em;
    display: inline-flex;
    gap: 30px;
    align-items: center;
    padding: 13px 24px;
    border: 1px solid #3E3E3E;
    background-color: #1c1c1c;
    text-transform: uppercase;
}

.pl-120 {
    padding-left: 120px;
}

.mt-80 {
    margin-top: 80px;
}

.apci_contact_side_desc p {
    color: #666;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.apci_contact_side_desc p b {
    color: #1C1C1C;
}

.apci_contact_side_desc {
    border-bottom: 1px solid #CCC;
    padding-bottom: 40px;
}

.apci_contact_link_details_area a {
    display: flex;
    position: relative;
    padding: 25px 0;
    border-bottom: 1px solid #CCC;
    align-items: center;
}

.apci_contact_link_details_area a img {
    width: 64px;
    margin-right: 30px;
}

.apci_contact_link_details_area p {
    color: #666;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.apci_contact_link_details_area p b {
    color: #1C1C1C;
    font-weight: 400;
}


/* Transparent Header  */

.header-transparent {
    background: transparent;
}

.header-transparent .nav-link {
    color: #fff;
}

.header-transparent .logo-img {
    content: url('../upload/assets/white-logo.svg');
}

.header-transparent .header_side_icon img {
    filter: brightness(0) invert(1);
}

/* White Header  */

.header-white {
    background: #fff;
}

.header-white .nav-link {
    color: #000;
}

.header-white .logo-img {
    content: url('../upload/assets/black-logo.svg');
}

.header-white .header_side_icon.search_bar_icon img,
.header-white .header_side_icon.bookmark_icon img,
.header-white .header_side_icon.lang_switcher img {
    filter: invert(1);
}

.smart_new_navbar {
    padding: 0 50px;
    border-radius: 8px;
}

.lang_dropdown a img {
    filter: invert(0) !important
}