:root {
    --primary-color: #003f60;
    --text-primary: #333333;
    --text-body: #666666;
    --text-subheading: #707070;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
    --navy: #07364d;
    --navy2: #062a3d;
    --blue: #087aa4;
    --cyan: #1cb7d7;
    --cyan2: #73dce9;
    --ice: #eaf7fa;
    --silver: #eef3f5;
    --text: #16313d;
    --muted: #6d8089;
    --line: #d9e5e9;
    --white: #fff
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Global Class Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    width: 100%;
    height: 40px;
    background-color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 13px;
    color: #cccccc;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
    z-index: 1001;
    position: relative;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

/* Language Selector */
.lang-selector {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #cccccc;
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    height: 100%;
    transition: var(--transition);
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn i {
    font-size: 14px;
}

.lang-arrow {
    font-size: 10px;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    width: 160px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1002;
}

/* Hover show dropdown */
.lang-selector:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333333;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.lang-dropdown img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    display: inline-block;
    border: 1px solid #dddddd;
}

/* Search Bar */
.search-bar-top {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #555555;
    padding-bottom: 2px;
    transition: var(--transition);
}

.search-bar-top:focus-within {
    border-bottom-color: var(--primary-color);
}

.search-bar-top input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    width: 120px;
    padding: 2px 5px 2px 0;
}

.search-bar-top input::placeholder {
    color: #888888;
}

.search-bar-top button {
    background: transparent;
    border: none;
    color: #cccccc;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
    padding: 0;
}

.search-bar-top button:hover {
    color: var(--primary-color);
}

/* Hide Google Translate attribution and banner */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important;
    margin-top: 0 !important;
    position: static !important;
}

html {
    top: 0 !important;
    margin-top: 0 !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */

.site-header {
    width: 100%;
    height: 70px;
    background: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eeeeee;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo (Left) */
.site-logo {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    width: 128px;
    height: auto;
    display: block;
}

/* Navigation List (Middle) */
.main-nav {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.nav-list {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    height: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-item>a {
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
}

/* Active & Hover Nav Item: Solid Primary Blue & White Text */
.nav-item:hover>a,
.nav-item.active>a {
    color: #ffffff !important;
    background-color: var(--navy) !important;
}

.dropdown-arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.nav-item:hover>a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Quote Button (Right) */
.quote-btn {
    height: 46px;
    min-width: 180px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 3px 3px 0 #cccccc;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.quote-btn:hover {
    background-color: #074f72;
}

/* =========================================
   STANDARD SINGLE DROPDOWN (About Us, News, Support)
========================================= */

.dropdown-menu {
    position: absolute;
    top: 70px;
    left: 0;
    min-width: 200px;
    background-color: #292929;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    visibility: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1005;
}

.nav-item:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 24px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active-item {
    background-color: var(--cyan);
    color: #ffffff;
}

/* =========================================
   PRODUCTS FLYOUT MULTI-LEVEL DROPDOWN
========================================= */

.products-menu-dropdown {
    width: 220px;
}

.products-menu-dropdown li.has-submenu {
    position: relative;
    width: 100%;
}

.products-menu-dropdown li.has-submenu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px 11px 22px;
}

.products-menu-dropdown li.has-submenu>a .sub-arrow {
    font-size: 11px;
    color: #cccccc;
    transition: color 0.2s ease;
}

.products-menu-dropdown li.has-submenu:hover>a {
    background-color: #4a90e2;
    color: #ffffff;
}

.products-menu-dropdown li.has-submenu:hover>a .sub-arrow {
    color: #ffffff;
}

/* Level 2 Sub-Dropdown (Opens to the right side of the hovered parent item) */
.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background-color: #1f1f1f;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.35);
    visibility: hidden;
    opacity: 0;
    transform: translateX(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1010;
}

.products-menu-dropdown li.has-submenu:hover>.sub-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.sub-dropdown-menu li {
    width: 100%;
}

.sub-dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14.5px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
}

.sub-dropdown-menu li a:hover {
    background-color: var(--cyan);
    color: #fff;
}

/* =========================================
   MOBILE & TABLET DROPDOWN NAVIGATION (FROM TOP)
========================================= */

.mobile-hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease;
}

.mobile-hamburger-btn:hover {
    color: #00a0e9;
}

/* Fullscreen Dropdown Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Sliding Dropdown Panel (From Top) */
.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    background: #ffffff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Active Open State */
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay.active .mobile-nav-panel {
    transform: translateY(0);
}

/* Header inside Panel */
.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-nav-close:hover {
    color: #00a0e9;
    transform: rotate(90deg);
}

.mobile-nav-logo img {
    height: 28px;
    width: auto;
    display: block;
}

/* Search Bar inside Panel */
.mobile-nav-search {
    padding: 10px 0px 10px;
    border-bottom: 1px solid #cac8c8;
    background: #ffffff;
}

.mobile-search-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.mobile-search-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 6px 34px 6px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333333;
    outline: none;
}

.mobile-search-wrapper input::placeholder {
    color: #999999;
}

.mobile-search-wrapper button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555555;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
}

/* Menu List */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.mobile-menu-item {
    border-bottom: 1px solid #cac8c8;
}

.mobile-menu-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.mob-nav-body {
    padding: 20px;
}

.mobile-contact-info {
    padding: 16px 0px 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #1c1c1c;
    line-height: 2;
    word-break: break-word;
}

.mobile-contact-info a {
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-contact-info a:hover {
    color: #00a0e9;
}

.mobile-menu-link {
    flex: 1;
    display: block;
    padding: 14px 0px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-item.active>.mobile-menu-link,
.mobile-menu-item.active>.mobile-menu-title-row>.mobile-menu-link {
    color: #00a0e9;
}

.mobile-dropdown-btn {
    background: transparent;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    color: #666666;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.2s ease;
}

.mobile-dropdown-btn:hover {
    color: #00a0e9;
}

.mobile-menu-item.open>.mobile-menu-title-row .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #ffffff;
}

.mobile-menu-item.open>.mobile-submenu {
    display: block;
}

.mobile-sub-item {
    border-top: 1px solid #cac8c8;
}

.mobile-submenu-link {
    flex: 1;
    display: block;
    padding: 12px 20px 12px 36px;
    font-family: var(--font-body);
    font-size: 14px;

    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
    color: #00a0e9;
}

.mobile-sub-item.mobile-has-subdropdown.open>.sub-row .sub-btn i {
    transform: rotate(180deg);
}

/* Nested Submenu (3rd Level) */
.mobile-nested-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #fafafa;
}

.mobile-sub-item.open>.mobile-nested-submenu {
    display: block;
}

.mobile-nested-link {
    display: block;
    padding: 10px 20px 10px 52px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #666666;
    text-decoration: none;
    border-top: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.mobile-nested-link:hover {
    color: #00a0e9;
}


/* =========================================
   COMMON SECTION HEADERS
========================================= */

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-subheading);
    max-width: 680px;
    margin: 0 auto;
}

/* hero */
.hero {
    height: calc(100vh - 108px);
    min-height: 500px;
    background: var(--navy);
    position: relative
}

.heroSwiper,
.hero-slide {
    height: 100%
}

.hero-slide {
    position: relative;
    overflow: hidden
}

.hero-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.swiper-slide-active>img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #032130d9, #052d3e75 50%, #052d3e10)
}

.hero-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: min(1180px, calc(100% - 48px))
}

.hero-eyebrow,
.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px
}

.hero-eyebrow:before,
.eyebrow:before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor
}

.hero-content h1 {
    margin-top: 18px;
    color: #fff;
    font: 500 clamp(55px, 7vw, 92px)/.97 Oswald, sans-serif;
    text-transform: uppercase
}

.hero-content h1 span {
    color: var(--cyan2)
}

.hero-content p {
    max-width: 460px;
    margin-top: 22px;
    color: #fffc;
    font-size: 13px;
    line-height: 1.8;
    text-transform: uppercase
}

.hero-btn {
    display: inline-flex;
    gap: 22px;
    margin-top: 30px;
    padding: 15px 19px;
    background: var(--cyan);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .3s
}

.hero-btn:hover {
    background: #fff;
    transform: translateY(-3px)
}

.hero-arrows {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    display: flex
}

.hero-arrows button {
    width: 68px;
    height: 60px;
    border: 0;
    border-left: 1px solid #fff3;
    background: #052635c9;
    color: #fff;
    transition: .25s
}

.hero-arrows button:hover {
    background: var(--cyan);
    color: var(--navy)
}

.hero-pagination {
    position: absolute !important;
    z-index: 10;
    right: 150px !important;
    bottom: 28px !important;
    left: auto !important;
    width: auto !important
}

.hero-pagination .swiper-pagination-bullet {
    background: #ffffff55;
    opacity: 1
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background: var(--cyan)
}

.hero-scroll {
    position: absolute;
    z-index: 20;
    left: 28px;
    bottom: 28px;
    color: #fff;
    font-size: 8px;
    letter-spacing: 2px;
    writing-mode: vertical-rl
}

.hero-scroll i {
    display: block;
    width: 1px;
    height: 35px;
    background: var(--cyan);
    margin-top: 10px
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px
}

.section-heading h2,
.intro h2,
.about h2,
.inquiry h2 {
    margin-top: 15px;
    color: var(--navy);
    font: 500 clamp(43px, 5vw, 64px)/1 Oswald, sans-serif
}


/* =========================================
   1. OUR PRODUCTS SECTION
========================================= */

/* Products Pagination */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 45px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #555555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.page-link.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    font-weight: 600;
}

/* =========================================
   2. SOLUTION DISPLAY / APPLICATION SECTION
========================================= */

.solution-section {
    position: relative;
    min-height: 520px;
    padding: 90px 0 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #1a202c;
}

.solution-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease-out;
    pointer-events: none;
    z-index: 1;
}

.solution-bg-layer.active {
    opacity: 1;
    transform: scale(1.02);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

.solution-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.solution-left {
    align-self: flex-start;
}

.solution-display-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.solution-title-line {
    display: none;
}

.solution-mobile-preview {
    display: none;
}

.solution-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 320px;
    max-width: 100%;
}

.solution-tab-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    user-select: none;
}

.solution-tab-icon {
    font-size: 22px;
    color: #111111;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-tab-text {
    flex-grow: 1;
    overflow: hidden;
}

.solution-tab-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 3px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.solution-tab-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: #777777;
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover & Active State: Blue background, White text & icon */
.solution-tab-card:hover,
.solution-tab-card.active {
    background: var(--navy);
    box-shadow: 0 8px 24px rgba(0, 160, 233, 0.35);
    transform: translateX(-4px);
}

.solution-tab-card:hover .solution-tab-icon,
.solution-tab-card.active .solution-tab-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.solution-tab-card:hover .solution-tab-title,
.solution-tab-card.active .solution-tab-title {
    color: #ffffff;
}

.solution-tab-card:hover .solution-tab-sub,
.solution-tab-card.active .solution-tab-sub {
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================
   3. ABOUT US SECTION
========================================= */

/* =========================================
   4. PROCESS SECTION (3D Top-to-Bottom Flip)
========================================= */

.modern-process-section {
    background-color: var(--navy);
    padding: 100px 0;
}

.modern-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.mp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.mp-eyebrow i {
    color: var(--cyan);
}

.mp-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.modern-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modern-process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.modern-process-card:hover {
    transform: translateY(-10px);
}

.mpc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.mpc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpc-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mpc-step {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 6px 15px;
    border-radius: 20px;
    text-transform: uppercase;
}

.mpc-title {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpc-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpc-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.mpc-image-inner {
    width: 250px;
    height: 135px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: url('../img/is-2.svg');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: bottom center;
    mask-image: url('../img/is-2.svg');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: bottom center;
}

.mpc-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.modern-process-card:hover .mpc-image-bg {
    transform: scale(1);
}

/* =========================================
   5. LATEST NEWS SECTION (Modern)
========================================= */

.modern-news-section {
    padding: 100px 0;
    background-color: #f7f9f9;
}

.modern-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    position: relative;
}

.mnh-bg-text {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 100px;
    font-weight: 800;
    color: rgb(116 111 111 / 11%);
    text-transform: uppercase;
    z-index: 0;
    letter-spacing: 5px;
    line-height: 1;
    pointer-events: none;
}

.mnh-left {
    position: relative;
    z-index: 1;
}

.eb-line-l,
.eb-line-r {
    display: flex;
    align-items: center;
}

.eb-line-l::before,
.eb-line-r::after {
    content: '';
    width: 35px;
    height: 1.5px;
    background-color: var(--cyan);
}

.eb-line-l::after,
.eb-line-r::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--cyan);
    border-radius: 50%;
}

.mnh-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    text-transform: uppercase;
}

.mnh-btn {
    background-color: var(--cyan);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 3px;
}

.mnh-btn:hover {
    background-color: var(--navy);
}

.modern-news-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}

.modern-news-card {
    background: transparent;
}

.mnc-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 20px;
}

.mnc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.modern-news-card:hover .mnc-img img {
    transform: scale(1.05);
}

.mnc-img.short {
    height: 250px;
    border-radius: 20px;
}

.mnc-img.tall {
    height: 420px;
    border-radius: 20px;
}

.mnc-content {
    padding-right: 10px;
}

.mnc-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mnc-title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

.mnc-title a:hover {
    color: var(--cyan);
}

.mnc-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================
   6. SEND INQUIRY NOW SECTION (Modern)
========================================= */

.modern-inquiry-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../img/inquiry_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.modern-inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 29, 0.95);
    z-index: 1;
}

/* Background "INQUIRY" Text */
.mi-bg-text-wrapper {
    position: absolute;
    top: 15%;
    left: 5%;
    transform: rotate(45deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0.05;
}

.mi-bg-text {
    font-family: var(--font-heading);
    font-size: 180px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -5px;
}

.modern-inquiry-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE IMAGE & BADGE */
.mi-image-wrapper {
    position: relative;
    padding: 15px;
    /* Creates the gap between image and border */
}

/* The SVG Border */
.mi-svg-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mi-main-img {
    width: 100%;
    display: block;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
    position: relative;
    z-index: 2;
}

/* Badge Styling */
.mi-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: var(--white);
    color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    /* classic starburst */
    z-index: 3;
}

.mi-badge-text {
    display: flex;
    align-items: center;
    gap: 5px;
    transform: rotate(-90deg);
    /* Rotates the text 90 degrees left */
}

.mi-year {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    -webkit-text-stroke: 1px var(--navy);
    color: transparent;
    /* Hollow text like screenshot */
}

.mi-since {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 2px;
}

/* RIGHT SIDE HEADER & FORM */
.mi-header {
    margin-bottom: 40px;
}

.mi-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 10px 0 20px 0;
    text-transform: uppercase;
}

.mi-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.modern-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mi-form-group {
    position: relative;
    width: 100%;
}

.mi-form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-left: 3px solid transparent;
    color: var(--white);
    padding: 22px 55px 22px 25px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
    box-sizing: border-box;
}

.mi-form-control::placeholder {
    color: #ebe4e4;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.85;
    font-size: 14px;
}

.mi-form-control:focus {
    outline: none;
    border-left-color: var(--cyan);
    background: rgba(255, 255, 255, 0.08);
}

.mi-input-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 18px;
    pointer-events: none;
}

.mi-textarea {
    resize: none;
    min-height: 80px;
    padding-top: 25px;
}

.mi-textarea+.mi-input-icon {
    top: 35px;
}

.mi-btn {
    background: var(--cyan);
    color: var(--white);
    padding: 20px 45px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    align-self: flex-start;
}

.mi-btn:hover {
    background: var(--white);
    color: var(--navy);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    min-height: 520px;

    color: #ffffff;

    background:
        linear-gradient(to bottom,
            #0d3d54d6 0%,
            #303030 35%,
            #202020 65%,
            #202020 100%);
}


/* Footer container */

.footer-container {
    max-width: 1265px;
    margin: 0 auto;

    padding: 96px 0 60px;

    display: grid;

    grid-template-columns:
        1.25fr 1fr 1.2fr 1.5fr;

    column-gap: 45px;
}


/* Company */

.footer-company {
    padding-right: 15px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 130px;
    height: auto;
}

.footer-company h3 {
    margin: 0 0 5px;

    max-width: 290px;

    font-family: "Oswald", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;

    color: #ffffff;
}

.footer-company p {
    max-width: 290px;

    margin: 0;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.75;

    color: #dddddd;
}


/* Footer columns */

.footer-column h2,
.footer-collapse-header {
    margin: 0 0 10px;

    font-family: "Oswald", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #ffffff;
}

.footer-collapse-arrow {
    display: none;
}

.footer-collapse-content {
    display: block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column li a {
    color: #d4d4d4;

    text-decoration: none;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.footer-column li a:hover {
    color: #00a0e9;
}


/* Contact */

.contact-info p {
    margin: 0 0 5px;

    color: #dddddd;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.contact-info span {
    display: inline-block;
    width: 20px;

    color: #ffffff;
}


/* Social */

.social-icons {
    display: flex;
    gap: 9px;

    margin-top: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.social-icons a {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background-color: #2e6da4;
}

.footer-social-svg {
    fill: #2e6da4;
    display: block;
    transition: fill 0.2s ease;
}

.social-icons a:hover .footer-social-svg {
    fill: #ffffff;
}

@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Subscribe */

.subscribe-box {
    width: 100%;
    max-width: 365px;

    height: 32px;

    display: flex;

    background: #ffffff;
}

.subscribe-box input {
    flex: 1;

    min-width: 0;

    border: none;
    outline: none;

    padding: 0 12px;

    font-family: "Open Sans", sans-serif;
    font-size: 13px;

    color: #666666;
}

.subscribe-box button {
    width: 105px;

    border: none;

    background: #00a0e9;

    color: #ffffff;

    font-family: "Open Sans", sans-serif;
    font-size: 13px;

    cursor: pointer;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 0 solid transparent;

    text-align: center;

    padding: 0 20px 22px;
}

.footer-bottom p {
    margin: 0;

    color: #aaaaaa;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom span {
    margin-left: 5px;
}

/* =========================================
   CONTACT US PAGE
========================================= */

.page-banner {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffffff;
}

.breadcrumb-trail a {
    color: #f0f0f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-trail a:hover {
    color: #00a0e9;
}

.breadcrumb-sep {
    color: #cccccc;
    font-size: 12px;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Contact Page Section */
.contact-page-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

/* =========================================
   MODERN CONTACT CARDS
========================================= */
.modern-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mcc-card {
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mcc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mcc-light {
    background-color: #f7f4ef;
}

.mcc-highlight {
    background-color: var(--navy);
}

/* Watermark */
.mcc-watermark {
    position: absolute;
    bottom: -15px;
    right: 30px;
    font-size: 140px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.mcc-highlight .mcc-watermark {
    opacity: 0.15;
    color: #111111;
}

/* Content */
.mcc-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-right: 20px;
}

.mcc-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.mcc-light .mcc-title {
    color: #000;
}

.mcc-highlight .mcc-title {
    color: #ffffff;
}

.mcc-desc,
.mcc-desc a {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    font-weight: 500;
}

.mcc-light .mcc-desc,
.mcc-light .mcc-desc a {
    color: #666666;
}

.mcc-highlight .mcc-desc,
.mcc-highlight .mcc-desc a {
    color: rgba(255, 255, 255, 0.9);
}

/* Icons */
.mcc-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.mcc-light .mcc-icon-wrap {
    background-color: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.mcc-highlight .mcc-icon-wrap {
    background-color: #111111;
    border: none;
    color: #ffffff;
}

.contact-card-text.phone-text a:hover,
.contact-card-text.email-text a:hover {
    color: #00a0e9;
}

/* Contact Main Grid (Map + Form) */
.contact-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

.contact-form-wrapper {
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.contact-form-wrapper .form-group {
    margin-bottom: 14px;
}

.contact-form-wrapper .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #333333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--navy);
}

.contact-form-wrapper .form-textarea {
    resize: vertical;
    min-height: 95px;
}

.contact-btn-wrap {
    margin-top: 4px;
}

.contact-submit-btn {
    background-color: var(--navy);
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 42px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 160, 233, 0.25);
}

.contact-submit-btn:hover {
    background-color: #074f72;
    box-shadow: 0 4px 12px rgba(0, 160, 233, 0.35);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 120px;
    z-index: 99999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waBounce 3s ease-in-out infinite;
}

.floating-whatsapp img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.7);
    background-color: rgba(37, 211, 102, 0.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.floating-whatsapp::before {
    animation: waPing 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.floating-whatsapp::after {
    animation: waPing 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
    animation-delay: 1s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.55);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes waBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* =========================================
   PROCESS PAGE STYLES
========================================= */

.process-page-section {
    padding: 65px 0 95px;
    background-color: #ffffff;
}

.process-page-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.process-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.process-grid-item {
    width: 100%;
}

.process-item-card {
    position: relative;
    height: 315px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

/* Gradient vignette at bottom by default */
.process-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.process-item-card:hover .process-item-overlay {
    background: rgba(0, 0, 0, 0.78);
}

/* Content Container - Vertically Centered on Hover */
.process-item-body {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(75px);
    width: 100%;
    padding: 0 28px;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-item-card:hover .process-item-body {
    transform: translateY(-50%);
}

.process-item-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-item-line {
    display: block;
    width: 34px;
    height: 3px;
    background-color: var(--cyan);
    margin-top: 8px;
    margin-bottom: 0;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-item-card:hover .process-item-line {
    width: 52px;
}

/* Description Hidden by Default, Smoothly Fading Up on Hover */
.process-item-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #e5e7eb;
    line-height: 1.65;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    transform: translateY(22px);
    overflow: hidden;
    transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
        max-height 0.55s cubic-bezier(0.25, 1, 0.5, 1),
        margin-top 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform, max-height;
}

.process-item-card:hover .process-item-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 160px;
    margin-top: 14px;
    transition-delay: 0.05s;
}

/* =========================================
   DOWNLOAD PAGE STYLES
========================================= */

.download-page-section {
    padding: 65px 0 95px;
    background-color: #ffffff;
}

.download-page-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-item-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.download-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #888888;
    margin-bottom: 6px;
}

.download-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.download-count i {
    font-size: 12px;
}

.download-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 14px 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-box-inner {
    background-color: #f7f7f7;
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-box-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.download-pdf-center {
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
}

.pdf-svg-icon {
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 4px 10px rgba(229, 9, 20, 0.2));
}

.download-box-inner:hover .pdf-svg-icon {
    transform: scale(1.06);
}

.download-view-btn {
    background-color: var(--navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.download-view-btn:hover {
    background-color: #003f60;
    color: #ffffff;
}

/* =========================================
   PRODUCT KNOWLEDGE / NEWS PAGE STYLES
========================================= */

.pk-page-section {
    padding: 55px 0 90px;
    background-color: #ffffff;
}

.pk-container {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 20px;
    align-items: flex-start;
}

/* Left Sidebar */
.pk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.sidebar-header {
    background-color: var(--navy);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.sidebar-header:hover {
    background-color: var(--cyan);
}

.sidebar-header-static {
    cursor: default;
}

.sidebar-header-static:hover {
    background-color: #00a0e9;
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.4px;
}

.sidebar-box-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-box-toggle i {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotate(180deg);
}

.sidebar-box.active .sidebar-box-toggle i {
    transform: rotate(0deg);
}

.sidebar-box-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.sidebar-box.active .sidebar-box-body {
    max-height: 700px;
    opacity: 1;
}

/* News Category Menu */
.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-item {
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-menu-item:last-child {
    border-bottom: none;
}

.sidebar-menu-link {
    display: block;
    padding: 13px 20px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-menu-link:hover,
.sidebar-menu-link.active-link {
    color: var(--cyan);
}



.sidebar-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.sidebar-menu-row .sidebar-menu-link {
    flex: 1;
}

.sidebar-toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle-btn i {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.2s ease;
    transform: rotate(180deg);
}

.sidebar-toggle-btn:hover i {
    color: var(--cyan);
}

.sidebar-collapse-item.active .sidebar-toggle-btn i {
    transform: rotate(0deg);
}

.sidebar-nested-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafbfc;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease,
        padding 0.3s ease;
}

.sidebar-collapse-item.active .sidebar-nested-list {
    max-height: 250px;
    opacity: 1;
    padding-bottom: 10px;
}

.sidebar-sub-link {
    display: block;
    padding: 9px 20px 9px 34px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-sub-link:hover {
    color: var(--cyan);
}

/* Sidebar Quick Contact Form */
.sidebar-form-body {
    padding: 18px 20px;
    background: #ffffff;
}

.sidebar-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.sidebar-form-group {
    margin-bottom: 12px;
}

.sidebar-input {
    width: 100%;
    padding: 8px 2px;
    border: none;
    border-bottom: 1px solid #d1d5db;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333333;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    transition: border-bottom-color 0.2s ease;
}

.sidebar-input:focus,
.sidebar-textarea:focus {
    border-bottom-color: #00a0e9;
}

.sidebar-textarea {
    width: 100%;
    padding: 8px 2px;
    border: none;
    border-bottom: 1px solid #d1d5db;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333333;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    resize: vertical;
    min-height: 70px;
    transition: border-bottom-color 0.2s ease;
}

.sidebar-submit-btn {
    background-color: var(--navy);
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 30px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sidebar-submit-btn:hover {
    background-color: #074f72;
}

/* Right Content Articles List */
/* =========================================
   MODERN NEWS GRID 
========================================= */
.modern-news-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    width: 100%;
}

.modern-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.mnh-subtitle {
    color: #00a0e9;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.mnh-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #00a0e9;
}

.mnh-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #00a0e9;
    border-radius: 50%;
}

.mnh-title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    font-family: 'Oswald', sans-serif;
}

.mnh-btn {
    background-color: #00a0e9;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    transition: background-color 0.3s;
}

.mnh-btn:hover {
    background-color: #074f72;
}

.modern-news-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.modern-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mnc-content {
    display: flex;
    flex-direction: column;
}

.mnc-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #666666;
    font-size: 14px;
}

.mnc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}



/* Pagination */
.pk-pagination-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    padding-top: 15px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #475569;
    flex-wrap: wrap;
    width: 100%;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pg-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    color: #475569;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pg-btn:hover,
.pg-btn.active {
    background-color: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

.pagination-info {
    color: #64748b;
}

.pagination-jump {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jump-input {
    width: 48px;
    height: 32px;
    padding: 0 6px;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    font-size: 13px;
    text-align: center;
    outline: none;
    box-sizing: border-box;
}

.jump-btn {
    height: 32px;
    padding: 0 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    color: #475569;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jump-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

/* =========================================
   PRODUCT KNOWLEDGE DETAILS PAGE STYLES
========================================= */

.pkd-main-section {
    padding: 35px 0 70px;
    background-color: #ffffff;
}

.pkd-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: flex-start;
}

/* Left Main Article Container */
.pkd-article-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Top Centered Header */
.pkd-top-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f6;
}

.pkd-top-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: normal;
    margin: 0 auto;
    max-width: 95%;
}

.pkd-top-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.pkd-top-meta a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pkd-top-meta a:hover {
    color: #0000e0;
}

.pkd-top-inquire-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.pkd-inquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #0000e0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: normal;
    padding: 10px 50px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 224, 0.2);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pkd-inquire-btn:hover {
    background-color: #0000bf;
    color: #ffffff;
    transform: translateY(-1px);
}

.pkd-inquire-btn i {
    font-size: 13px;
}

/* Article Content Body */
.pkd-content-body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 14.5px;
}

/* Point Containers with Underline at the End of Each Point */
.pkd-point-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.pkd-point-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pkd-content-main-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0 0 18px 0;
}

.pkd-content-sub-heading {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.pkd-content-body h2,
.pkd-content-body h3 {
    font-family: var(--font-body);
    color: var(--text-primary);
    margin: 0 0 14px 0;
    border-bottom: none;
    padding-bottom: 0;
}

.pkd-hero-image-wrap {
    width: 100%;
    margin: 20px 0 0;
    border-radius: 2px;
    overflow: hidden;
}

.pkd-hero-image-wrap img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.image-caption {
    display: block;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #64748b;
    text-align: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-style: italic;
}

.pkd-content-body p {
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.75;
}

.pkd-content-body p strong {
    font-size: 20px;
}

.pkd-list {
    margin: 0 0 24px 20px;
    padding: 0;
}

.pkd-list li {
    margin-bottom: 10px;
    line-height: 1.65;
}

/* Comparison Table */
.pkd-table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0 30px;
    display: block;
}

.pkd-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
}

.pkd-table th,
.pkd-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    color: var(--text-primary);
    line-height: 1.6;
    vertical-align: middle;
}

.pkd-table th {
    font-weight: 600;
    white-space: nowrap;
    background-color: #ffffff;
}

.pkd-table td {
    font-weight: 400;
}

/* Process Grid Cards */
.pkd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 25px 0 35px;
}

.pkd-process-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #00a0e9;
    padding: 20px 16px;
    border-radius: 2px;
    position: relative;
}

.step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #00a0e9;
    margin-bottom: 6px;
}

.pkd-process-step h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.pkd-process-step p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.pkd-content-image-wrap {
    width: 100%;
    margin: 30px 0;
    border-radius: 2px;
    overflow: hidden;
}

.pkd-content-image-wrap img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* Tags */
.pkd-tags-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
}

.tags-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
}

.pkd-tag {
    border: 1px solid rgba(165, 165, 165, 0.7);
    color: var(--text-primary);
    font-size: 12.5px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pkd-tag:hover {
    color: #3a3aff;
    text-decoration: underline;
}

/* Prev & Next Nav */
.pkd-prev-next-nav {
    gap: 40px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eef2f6;
    display: flex;
}

.nav-prev,
.nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    min-width: 0;
    flex: 1;
}


.nav-direction {
    font-size: 12.5px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-prev a,
.nav-next a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.2s ease;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-prev a:hover,
.nav-next a:hover {
    color: #3a3aff;
    text-decoration: underline;
}

/* Right Sidebar:  */
.pkd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pkd-sidebar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: 0.2px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.pkd-related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd-news-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkd-news-thumb {
    width: 100%;
    height: 155px;
    border-radius: 2px;
    overflow: hidden;
    background: #f1f5f9;
    display: block;
}

.pkd-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pkd-news-card:hover .pkd-news-thumb img {
    transform: scale(1.05);
}

.pkd-news-body {
    display: flex;
    flex-direction: column;
}

.pkd-news-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
}

.pkd-news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkd-news-title a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Bottom Related Products Section */
.pkd-related-products-section {
    background-color: #f8fafc;
    padding: 60px 0 85px;
    border-top: 1px solid #e2e8f0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.pkd-products-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pkd-title-line {
    width: 50px;
    height: 3px;
    background-color: var(--cyan);
    margin: 0 auto;
}

.pkd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pkd-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkd-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
}

.product-card-thumb {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pkd-product-card:hover .product-card-thumb img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-name {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #00a0e9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-link-btn:hover {
    color: #0077b5;
    transform: translateX(3px);
}

/* =========================================
   APPLICATION 
========================================= */

.application-section {
    padding: 35px 0 70px;
    background-color: #ffffff;
    width: 100%;
}

/* Burgundy Background Block Container */
.application-burgundy-block {
    background-color: #f3f3f3;
    max-width: 1077px;
    margin: 0 auto;
    padding: 35px 0 45px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    box-sizing: border-box;
}

/* Application Rows */
.application-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Left Image Row */
.app-img-left .app-img-col {
    order: 1;
    display: flex;
    justify-content: flex-start;
}

.app-img-left .app-text-col {
    order: 2;
    padding: 20px 35px 20px 15px;
}

/* Right Image Row */
.app-img-right .app-text-col {
    order: 1;
    padding: 20px 15px 20px 45px;
}

.app-img-right .app-img-col {
    order: 2;
    display: flex;
    justify-content: flex-end;
}

/* Image Wrappers and Offset Transitions */
.app-img-wrap {
    width: 100%;
    max-width: 524px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    background-color: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.app-img-wrap img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

/* Default Offsets: Image Left extends to left, Image Right extends to right */
.app-img-left .app-img-wrap {
    transform: translateX(-40px);
}

.app-img-right .app-img-wrap {
    transform: translateX(40px);
}

/* Hover Effects: Image Left moves slightly more to the left; Image Right moves slightly more to the right */
.app-img-left .app-img-wrap:hover {
    transform: translateX(-60px);
}

.app-img-right .app-img-wrap:hover {
    transform: translateX(60px);
}

/* Content Typography */
.app-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-heading);
    margin: 0 0 16px 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.app-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
}

.app-desc p {
    margin: 0 0 12px 0;
}

.app-desc p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Products
========================================= */

/* Product Sidebar Menu Styling */
.product.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.product.sidebar-menu-list .sidebar-menu-item {
    border-bottom: 1px solid #f1f5f9;
}

.product.sidebar-menu-list .sidebar-menu-item:last-child {
    border-bottom: none;
}

/* Parent Links & Bullet */
.product.sidebar-menu-list .sidebar-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product.sidebar-menu-list .sidebar-menu-link::before {
    content: "•";
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s ease;
}

.product.sidebar-menu-list .sidebar-menu-link:hover,
.product.sidebar-menu-list .sidebar-collapse-item.active>.sidebar-menu-row .sidebar-menu-link,
.product.sidebar-menu-list .sidebar-menu-link.active-link {
    color: var(--cyan);
}

.product.sidebar-menu-list .sidebar-menu-link:hover::before,
.product.sidebar-menu-list .sidebar-collapse-item.active>.sidebar-menu-row .sidebar-menu-link::before {
    color: var(--cyan);
}

/* Toggle Arrow Button */
.product.sidebar-menu-list .sidebar-toggle-btn {
    color: #333333;
}

.product.sidebar-menu-list .sidebar-toggle-btn:hover {
    color: var(--cyan);
}

/* Child Nested List & Sub-links */
.product.sidebar-menu-list .sidebar-nested-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafbfc;
}

.product.sidebar-menu-list .sidebar-sub-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 20px 8px 36px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product.sidebar-menu-list .sidebar-sub-link:hover,
.product.sidebar-menu-list .sidebar-sub-link.active-sub-link {
    color: var(--cyan);
}

.product.sidebar-menu-list .sidebar-sub-link:hover::before {
    color: var(--cyan);
}

.product-main-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

/* =========================================
   MODERN PRODUCT GRID (PRODUCT.PHP)
========================================= */
.modern-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.modern-product-box {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    text-decoration: none;
}

.mpb-content {
    background-color: #f7f6f2;
    padding: 15px 30px 62px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    position: relative;
    z-index: 2;
    margin-bottom: -50px;
    transition: background-color 0.3s ease;
}

.mpb-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpb-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mpb-readmore {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mpb-readmore i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.modern-product-box:hover .mpb-readmore {
    color: var(--navy);
}

.modern-product-box:hover .mpb-readmore i {
    transform: translateX(5px);
}

.mpb-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.mpb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-product-box:hover .mpb-image img {
    transform: scale(1.1);
}

.product-pagination-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    padding-top: 15px;
}

/* =========================================
   PRODUCT DETAILS PAGE 
========================================= */

.prod-details-top-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 35px;
    align-items: start;
    width: 100%;
    margin-bottom: 35px;
}

.prod-details-full-width-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.product-details-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    min-width: 0;
}

.product-details-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 35px;
    align-items: start;
    width: 100%;
}

/* Gallery & Swiper Styles */
.product-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    min-width: 0;
}

.product-main-swiper {
    position: relative;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 12px;
    min-width: 0;
}

.product-main-swiper .swiper-slide {
    width: 100%;
    box-sizing: border-box;
}

.prod-main-img-box {
    position: relative;
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.prod-main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
}

.prod-badge-orange {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background-color: #f97316;
    color: #ffffff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 5;
    pointer-events: none;
}

/* Hover Navigation Arrows */
.prod-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: none;
}

.prod-gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.85);
}

.product-gallery-wrapper:hover .prod-gallery-arrow,
.product-main-swiper:hover .prod-gallery-arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-swiper-button-prev {
    left: 10px;
}

.product-swiper-button-next {
    right: 10px;
}

/* Thumbnails Gallery Grid */
.product-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.prod-thumb-item {
    width: 100%;
    height: 75px;
    border: 2px solid #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.prod-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

.prod-thumb-item:hover {
    border-color: #94a3b8;
}

.prod-thumb-item.active {
    border: 2px solid #222222 !important;
}

/* Product Info Column */
.product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.prod-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.prod-details-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

.prod-qr-code-icon {
    font-size: 18px;
    color: #4b5563;
    cursor: pointer;
    padding-top: 4px;
    transition: color 0.2s ease;
}

.prod-qr-code-icon:hover {
    color: #0000e0;
}

/* Quantity Row */
.prod-qty-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 2px;
}

.prod-qty-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.prod-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    overflow: hidden;
}

.prod-qty-btn {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: none;
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.prod-qty-btn:hover {
    background: #f3f4f6;
}

.prod-qty-input {
    width: 44px;
    height: 32px;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111827;
    outline: none;
    -moz-appearance: textfield;
}

.prod-qty-input::-webkit-outer-spin-button,
.prod-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Pill Action Buttons */
.prod-action-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 250px;
    margin: 4px 0;
}

.prod-pill-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    background: #ffffff;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.prod-pill-btn:hover {
    background: var(--navy);
    color: #ffffff;
}

/* Short Description */
.prod-short-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 4px 0;
}

.prod-short-desc p {
    margin: 0;
    color: var(--text-primary);
}

/* Metadata & Social Share */
.prod-meta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #E5E5E5;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 13.5px;
}

.prod-meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.prod-meta-row .meta-item {
    color: #6b7280;
}

.prod-meta-row .meta-val {
    color: #111827;
    font-weight: 600;
}

.prod-social-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.prod-share-btn {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.prod-share-btn:hover {
    opacity: 0.85;
}

.share-fb {
    background-color: #1877f2;
}

.share-x {
    background-color: #000000;
}

.share-wa {
    background-color: #25d366;
}

.share-in {
    background-color: #0a66c2;
}

.share-pin {
    background-color: #bd081c;
}

.share-reddit {
    background-color: #ff4500;
}

.share-wechat {
    background-color: #07c160;
}

.share-nodes {
    background-color: #8b5cf6;
}

/* Bottom Tags Section */
.prod-bottom-tags-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    width: 100%;
}

.prod-tags-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.prod-tag-pill {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #696c72;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.prod-tag-pill:hover {
    text-decoration: underline;
}

/* Common Details Block */
.prod-details-block {
    width: 100%;
    margin-top: 28px;
}

/* Specific Block Widths */
.prod-spec-block {
    width: 70%;
    max-width: 70%;
}

.prod-comp-block {
    width: 65%;
    max-width: 65%;
}

.prod-features-block {
    width: 90%;
    max-width: 90%;
}

.prod-block-title,
.prod-block-title-2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.prod-block-title-2 {
    margin-top: 40px;
}

/* Specification & Composition Tables */
.prod-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #ffffff;
}

.prod-spec-table,
.prod-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #334155;
    text-align: left;
}

.prod-spec-table th,
.prod-spec-table td,
.prod-comp-table th,
.prod-comp-table td {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    vertical-align: top;
    line-height: 1.6;
}

.prod-spec-table th.spec-label {
    width: 160px;
    min-width: 140px;
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.prod-spec-table td.spec-val {
    background-color: #ffffff;
}

.prod-comp-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.prod-comp-table td {
    text-align: center;
}

.spec-list {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
}

.spec-list li {
    margin-bottom: 4px;
}

.spec-list li:last-child {
    margin-bottom: 0;
}

/* 4-Feature Product Highlights Grid */
.prod-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.prod-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.feature-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 14px;
    padding: 16px 16px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.feature-card-body {
    padding: 30px 16px 16px;
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.prod-feature-card:hover .feature-img-box img {
    transform: scale(1.03);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.feature-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}


/* Product Process Banner Image Block */
.prod-process-img-block {
    width: 100%;
    margin-top: 15px;
}

.prod-process-img-wrap {
    width: 100%;
    max-width: 900px;
}

.prod-process-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Product Description & Tabbed Table Styles (product-details2.php) */
.prod-desc-table-block {
    width: 100%;
    margin-bottom: 25px;
}

.prod-top-keyword-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.prod-keyword-pill {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #00a0e9;
    border-radius: 25px;
    color: #00a0e9;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.2s ease;
}

.prod-keyword-pill:hover {
    background: #00a0e9;
    color: #ffffff;
}

.prod-desc-main-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px 0;
    line-height: 1.25;
}

/* Blue Slanted Tab Header Bar */
.prod-tab-header-bar {
    position: relative;
    width: 100%;
    border-bottom: 2px solid #00a0e9;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.prod-tab-badge {
    position: relative;
    background-color: #00a0e9;
    color: #ffffff;
    padding: 8px 20px 8px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
    border-top-left-radius: 3px;
}

.prod-tab-badge .tab-slants {
    float: left;
    width: 4px;
    height: 31px;
    margin: 2px 0 0 18px;
    transform: skew(30deg, 0deg);
    background-color: #FFFFFF;
}

.prod-tab-badge .tab-slants span {
    width: 2px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Two-Column Details Table */
.prod-details-table-wrap {
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: #ffffff;
    width: 100%;
    overflow-x: auto;
}

.prod-two-col-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-primary);
}

.prod-two-col-table th,
.prod-two-col-table td {
    padding: 10px 18px;
    border: 1px solid #e2e8f0;
    line-height: 1.6;
    text-align: left;
}

.prod-two-col-table th {
    background-color: #ffffff;
    font-weight: 600;
    color: #4b5563;
    font-size: 13px;
}

.prod-two-col-table td.col-item {
    width: 28%;
    min-width: 150px;
    color: #374151;
    font-weight: 500;
}

.prod-two-col-table td.col-val {
    width: 72%;
    color: #4b5563;
}

/* Editorial Product Showcase Section (product-details2.php) */
.prod-editorial-showcase-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 10px;
}

.prod-showcase-images-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 580px;
    margin: 0;
}

.prod-showcase-img-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-showcase-img-box img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.prod-editorial-article-body {
    width: 100%;
    max-width: 900px;
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.75;
    text-align: left;
}

.prod-editorial-lead {
    font-size: 14.5px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 28px 0;
}

.prod-editorial-lead strong {
    color: #111827;
    font-weight: 700;
}

.prod-editorial-section {
    margin-bottom: 24px;
}

.prod-editorial-section:last-child {
    margin-bottom: 0;
}

.prod-editorial-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.prod-editorial-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-editorial-list li {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
    display: list-item;
}

.prod-editorial-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Related Products Swiper Section */
.related-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.related-section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0;
    margin: 0 0 30px 0;
}

.related-products-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 36px;
    box-sizing: border-box;
}

.related-products-swiper {
    width: 100%;
    overflow: hidden;
}

/* Static layout when slide count <= threshold */
.related-products-swiper.no-slider-grid .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    transform: none !important;
}

.related-products-swiper.no-slider-grid .swiper-slide {
    width: auto !important;
    flex: 0 0 calc((100% - (16px * 4)) / 5);
    max-width: calc((100% - (16px * 4)) / 5);
    margin: 0 !important;
}

.related-product-card {
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.related-product-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.related-prod-thumb {
    width: 100%;
    height: 135px;
    overflow: hidden;
    border-radius: 3px;
    display: block;
    margin-bottom: 8px;
    background: #f8fafc;
}

.related-prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.related-product-card:hover .related-prod-thumb img {
    transform: scale(1.05);
}

.related-prod-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.35;
}

.related-prod-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-prod-title a:hover {
    color: #0000e0;
    text-decoration: underline;
}

.related-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.related-swiper-nav:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

.related-swiper-prev {
    left: 0;
}

.related-swiper-next {
    right: 0;
}

/* Related News Section */
.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.related-news-bullet {
    font-size: 12px;
    color: #94a3b8;
}

.related-news-link {
    flex: 1;
    font-size: 13.5px;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-news-link:hover {
    color: #0000e0;
}

.related-news-date {
    font-size: 12.5px;
    color: #94a3b8;
    white-space: nowrap;
}

/* =========================================
   OUR FACTORY PAGE STYLES
========================================= */

.factory-equipment-section {
    padding: 60px 0 70px;
    background-color: #ffffff;
}

.factory-main-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 45px 0;
}

.factory-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.factory-equip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.factory-card-frame {
    position: relative;
    width: 100%;
    border: 1px solid #00a0e9;
    padding: 10px;
    background-color: #f8f4f4be;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.factory-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    padding: 10px;
    background-color: #fff;
}

.factory-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.factory-equip-card:hover .factory-card-img img {
    transform: scale(1.05);
}

.factory-equip-card:hover .factory-card-frame {
    box-shadow: 0 6px 20px rgba(0, 160, 233, 0.15);
}

/* Blue Accent Line sitting on top of bottom border middle */
.factory-accent-line {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #00a0e9;
    display: block;
    z-index: 2;
    transition: width 0.3s ease;
}

.factory-equip-card:hover .factory-accent-line {
    width: 75px;
}

/* Title */
.factory-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    margin: 16px 0 0;
    line-height: 1.4;
}

.factory-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.factory-equip-card:hover .factory-card-title a,
.factory-card-title a:hover {
    color: #00a0e9;
}

/* =========================================
   ABOUT US PAGE STYLES
========================================= */

.about-intro-section {
    padding: 70px 0 50px;
    background-color: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.about-intro-image-wrap {
    width: 100%;
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.about-desc {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.about-desc p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #222222;
    line-height: 1.75;
    margin: 0;
}

/* =========================================
   MODERN STATS SECTION (ABOUTUS.PHP)
========================================= */
.modern-stats-section {
    position: relative;
    padding: 50px 0;
    background-image: url('../img/Titanium-pipe-banner-PC.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cyan);
    opacity: 0.9;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-left: 35px;
}

.m-stat-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px 30px 15px 30px;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.m-stat-card:hover {
    background-color: var(--navy);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.m-stat-icon {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cyan);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--cyan);
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.m-stat-card:hover .m-stat-icon {
    background-color: var(--cyan);
    color: #ffffff;
    border-color: var(--navy);
    box-shadow: 0 0 0 2px #ffffff;
}

.m-stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-stat-number-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.m-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    transition: color 0.4s ease;
}

.m-stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    transition: color 0.4s ease;
}

.m-stat-card:hover .m-stat-number,
.m-stat-card:hover .m-stat-suffix {
    color: #ffffff;
}

.m-stat-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.m-stat-card:hover .m-stat-label {
    color: #e2e8f0;
}

/* =========================================
   ABOUT US HISTORY TIMELINE SECTION
========================================= */

.about-history-section {
    position: relative;
    padding: 70px 0 85px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.history-header {
    text-align: center;
    margin-bottom: 25px;
}

.history-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.history-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Active Year & Description Dynamic Display */
.history-active-display {
    text-align: center;
    margin-bottom: 45px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.history-active-year {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: #2786dc;
    line-height: 1.1;
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    transition: opacity 0.22s cubic-bezier(0.25, 1, 0.5, 1), transform 0.22s cubic-bezier(0.25, 1, 0.5, 1);
}

.history-year-divider {
    width: 600px;
    max-width: 90%;
    height: 2px;
    border: none;
    background: linear-gradient(90deg, transparent 0%, #3d85c699 30%, #349bd185 70%, transparent 100%);
    margin: 33px auto 33px;
    border-radius: 2px;
}

.history-active-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    transition: opacity 0.22s cubic-bezier(0.25, 1, 0.5, 1), transform 0.22s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Directional Text Fade Transitions */
.fade-out-left {
    opacity: 0 !important;
    transform: translateX(-40px) !important;
}

.fade-in-right {
    opacity: 0 !important;
    transform: translateX(40px) !important;
}

.fade-out-right {
    opacity: 0 !important;
    transform: translateX(40px) !important;
}

.fade-in-left {
    opacity: 0 !important;
    transform: translateX(-40px) !important;
}

/* Slider Wrapper & Horizontal Connecting Track */
.history-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 90px;
    box-sizing: border-box;
}

.history-timeline-track {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #00a0e9;
    z-index: 1;
}

.history-swiper {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 10px 0;
}

.history-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.history-card-img {
    width: 100%;
    height: 85px;
    overflow: hidden;
    background-color: #1e293b;
}

.history-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.history-card-year {
    background-color: #3d85c6;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}


.history-card.active .history-card-year {
    background-color: #00a0e9;
}

/* Navigation Arrow Buttons */
.history-swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3d85c6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.history-swiper-arrow:hover {
    background-color: #0284c7;
}

.history-swiper-prev {
    left: 20px;
}

.history-swiper-next {
    right: 20px;
}

/* =========================================
   OUR CERTIFICATE SECTION
========================================= */

.about-certificate-section {
    padding: 70px 0 85px;
    background-color: #ffffff;
}

.certificate-main-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}


.certificate-frame {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   REQUEST QUOTE / CONTACT US MODAL
========================================= */

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-dialog {
    background-color: #ffffff;
    border-radius: 6px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
    padding: 22px 28px 24px;
    transform: scale(0.94) translateY(-10px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.quote-modal-overlay.active .quote-modal-dialog {
    transform: scale(1) translateY(0);
}

.quote-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.quote-modal-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

.quote-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999999;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.quote-modal-close:hover {
    color: #222222;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quote-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-form-group label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: #333333;
}

.required-star {
    color: #e53e3e;
    font-weight: 700;
    margin-right: 2px;
}

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 9px 12px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #222222;
    background-color: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    border-color: #00a0e9;
    box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.12);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.quote-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.quote-modal-submit {
    background-color: #2b7bc4;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 28px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quote-modal-submit:hover {
    background-color: #1e62a1;
}

/* =========================================
   MODERN PRODUCTS LIST
========================================= */

.modern-products {
    padding: 100px 0;
    background-color: var(--silver);
}

.modern-products-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.modern-products-header h2 {
    color: var(--navy);
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 700;
}

.modern-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.modern-product-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    height: 100%;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--navy);
}

.modern-product-card:hover .mp-content h3 {
    color: var(--white);
}

.modern-product-card:hover .mp-link {
    color: var(--cyan);
}

.modern-product-card:hover .mp-link:hover {
    color: var(--white);
}

.mp-content {
    flex: 1;
}

.mp-content h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-image {
    width: 100%;
    height: 190px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 120px 120px 15px 15px;
    position: relative;
}

.mp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .mp-image img {
    transform: scale(1.1);
}

.mp-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mp-link {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.mp-link span {
    transition: transform 0.3s ease;
}

.mp-link:hover {
    color: var(--cyan);
}

.mp-link:hover span {
    transform: translateX(5px) translateY(-5px);
}

/* =========================================
   MODERN ABOUT SECTION (Screenshot 1 Layout)
========================================= */

.modern-about {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.modern-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ma-left-col {
    position: relative;
    height: 450px;
}

.ma-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 7.5px);
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ma-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ma-img-2 {
    position: absolute;
    top: 91px;
    right: 0;
    width: calc(50% - 7.5px);
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ma-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Hover Shine Effect */
.ma-img-1::after,
.ma-img-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 3;
    transition: left 0s;
}

.ma-img-1:hover::after,
.ma-img-2:hover::after {
    left: 200%;
    transition: left 0.8s ease-in-out;
}

/* Floating Widgets */
.ma-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    position: absolute;
    z-index: 3;
}

.ma-widget-top {
    top: 0px;
    right: 5%;
}

.ma-widget-bottom {
    bottom: 0px;
    left: 0;
    background: #f8f6f0;
}

.ma-widget-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--silver);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ma-widget-text h4 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.ma-widget-text p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ma-widget-circle {
    position: absolute;
    top: 27%;
    left: 36%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 10px solid var(--white);
}

.ma-circle-inner h4 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.ma-circle-inner p {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    padding: 0 10px;
    text-transform: uppercase;
}

/* Right Column Content */
.ma-right-col {
    padding-left: 20px;
}

.ma-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: var(--ice);
    padding: 8px 15px;
    border-radius: 20px;
}

.ma-title {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.ma-desc {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--cyan);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.ma-btn span {
    transition: transform 0.3s ease;
}

.ma-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ma-btn:hover span {
    transform: translateX(3px) translateY(-3px);
}

/* =========================================
   NEWS LIST (NEWS.PHP) - Redesign
========================================= */
.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.news-list-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.news-list-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-list-img {
    position: relative;
    width: 40%;
    flex-shrink: 0;
    overflow: hidden;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-list-card:hover .news-list-img img {
    transform: scale(1.05);
}

.news-list-date {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00a0e9;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 30px;
    clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
    white-space: nowrap;
    z-index: 2;
}

.news-list-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-list-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-list-card:hover .news-list-title a {
    color: var(--cyan, #00a0e9);
}

.news-list-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .modern-product-grid,
    .modern-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-logo {
        width: 190px;
        padding-left: 30px;
    }

    .nav-item>a {
        padding: 0 10px;
        font-size: 16px;
    }

    .quote-btn {
        min-width: 160px;
        margin-right: 30px;
    }

    .footer-container {
        padding-left: 35px;
        padding-right: 35px;
        column-gap: 25px;
    }

    .modern-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }

    .modern-news-card {
        flex-direction: column;
    }

    .mnc-image-wrap {
        width: 100%;
    }

    .mnc-image-inner {
        border-radius: 4px 4px 0 0;
    }

    .top-bar {
        display: none !important;
    }

    .site-header {
        height: 60px;
        position: sticky;
        top: 0;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        height: 100%;
        padding: 0 15px;
    }

    .mobile-hamburger-btn {
        display: flex;
    }

    .site-logo {
        height: 100%;
        margin-right: auto;
        padding-left: 0;
    }

    .site-logo img {
        width: 115px;
    }

    .main-nav {
        display: none !important;
    }

    .quote-btn {
        display: inline-flex;
        height: 38px;
        min-width: 130px;
        font-size: 12px;
        padding: 0 14px;
        margin-left: auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 45px;
    }

    .hero-swiper,
    .hero-slide {
        height: 460px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .hero-nav-wrapper {
        right: 25px;
        bottom: 25px;
    }

    /* 6 New Sections Responsive (991px) */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Solution Section Mobile & Tablet (991px) */
    .solution-section {
        min-height: auto;
        padding: 0 0 35px;
        background-color: #f7f9fb;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .solution-bg-layer,
    .solution-overlay {
        display: none;
    }

    .solution-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .solution-left {
        background-color: #3c78d8;
        padding: 20px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .solution-display-title {
        font-size: 22px;
        color: #ffffff;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        text-shadow: none;
    }

    .solution-title-line {
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ffffff;
    }

    .solution-mobile-preview {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        background: #222222;
        position: relative;
    }

    .solution-mobile-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .solution-cards-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 14px;
        padding: 20px 16px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .solution-cards-wrapper::-webkit-scrollbar {
        display: none;
    }

    .solution-tab-card {
        flex: 0 0 240px;
        min-width: 220px;
        max-width: 260px;
        padding: 16px 18px;
        box-sizing: border-box;
    }

    /* About Us Mobile & Tablet (991px) */
    .about-section {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-wrapper {
        flex-direction: column;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .about-left-col {
        padding: 40px 20px 25px;
        flex: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-info-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .about-readmore {
        margin-bottom: 25px;
    }

    .about-stats-row {
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #edf2f7;
        margin-top: 0;
        margin-bottom: 25px;
        box-sizing: border-box;
    }

    .about-stat-card {
        padding: 20px 12px;
    }

    .about-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .about-stat-number {
        font-size: 22px;
    }

    .about-stat-label {
        font-size: 11px;
        line-height: 1.25;
    }

    .about-right-col {
        width: 100%;
        height: 280px;
        min-height: 280px;
        flex: auto;
        max-width: 100%;
    }

    .process-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .news-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .news-featured-card {
        min-height: 340px;
        width: 100%;
        max-width: 100%;
    }

    .news-featured-hover-box {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 18px 16px;
    }

    .news-hover-desc {
        -webkit-line-clamp: 6;
        font-size: 12px;
    }

    .news-list {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .news-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .inquiry-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .inquiry-box {
        width: 100%;
        max-width: 100%;
    }

    .inquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }


    .page-banner {
        height: 180px;
    }

    .contact-page-section {
        padding: 50px 0 65px;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-top: 45px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 48px 14px 22px;
        min-height: 190px;
        border-width: 6px;
    }

    .contact-card-text {
        font-size: 12.5px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-map-wrapper {
        min-height: 320px;
        height: 320px;
    }

    .contact-card-icon {
        width: 90px;
        height: 90px;
    }

    /* Process Page Tablet (991px) */
    .process-page-section {
        padding: 45px 0 65px;
    }

    .process-page-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .process-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-item-card {
        height: 290px;
    }

    .process-item-body {
        padding: 0 22px;
        transform: translateY(65px);
    }

    .process-item-card:hover .process-item-body {
        transform: translateY(-50%);
    }

    /* Download Page Tablet (991px) */
    .download-page-section {
        padding: 45px 0 65px;
    }

    .download-page-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Factory Equipment Section Tablet (991px) */
    .factory-equipment-section {
        padding: 45px 0 55px;
    }

    .factory-main-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .factory-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .factory-card-img {
        height: 220px;
    }

    /* About Us Page Tablet (991px) */
    .about-intro-section {
        padding: 45px 0 40px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-intro-image-wrap {
        height: 340px;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-main-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .about-stats-section {
        padding: 30px 0;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* About Us History Timeline Tablet (991px) */
    .about-history-section {
        padding: 50px 0 65px;
    }

    .history-title {
        font-size: 30px;
    }

    .history-active-year {
        font-size: 42px;
    }

    .history-slider-wrapper {
        padding: 0 50px;
    }

    .history-card-img {
        height: 135px;
    }

    /* Certificate Section Tablet (991px) */
    .about-certificate-section {
        padding: 50px 0 65px;
    }

    .certificate-main-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .certificate-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 650px;
    }

    /* Product Knowledge Page Tablet (991px) */
    .pk-page-section {
        padding: 40px 0 65px;
    }

    .pk-container {
        grid-template-columns: repeat(2, 1fr, 2fr);
        gap: 35px;
    }

    .pk-sidebar {
        gap: 24px;
    }


    .pk-article-thumb {
        width: 100%;
        height: 240px;
    }

    .pk-article-date-col {
        justify-content: flex-start;
    }

    .pk-article-title {
        font-size: 16px;
    }

    /* Product Knowledge Details Page Tablet (991px) */
    .pkd-main-section {
        padding: 40px 0 55px;
    }

    .pkd-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pkd-main-title {
        font-size: 24px;
    }

    .pkd-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkd-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pkd-related-products-section {
        padding: 45px 0 65px;
    }

    /* Application Page Tablet */
    .application-section {
        padding: 25px 0 50px;
    }

    .application-outer-container {
        padding: 0 20px;
    }

    .application-burgundy-block {
        max-width: 100%;
        padding: 25px 0 35px;
        gap: 25px;
    }

    .application-row {
        gap: 15px;
    }

    .app-img-left .app-img-wrap {
        transform: translateX(-20px);
    }

    .app-img-right .app-img-wrap {
        transform: translateX(20px);
    }

    .app-img-left .app-img-wrap:hover {
        transform: translateX(-35px);
    }

    .app-img-right .app-img-wrap:hover {
        transform: translateX(35px);
    }

    .app-img-wrap img {
        height: 220px;
    }

    .app-desc {
        font-size: 12.5px;
        line-height: 1.6;
    }

    .app-img-left .app-text-col {
        padding: 15px 20px 15px 10px;
    }

    .app-img-right .app-text-col {
        padding: 15px 10px 15px 25px;
    }

    .product-desc.pk-article-desc {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .product-body .pk-article-title {
        height: auto !important;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* Product Details Tablet (991px) */
    .prod-details-top-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prod-spec-block,
    .prod-comp-block,
    .prod-features-block {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-details-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery-wrapper {
        max-width: 100%;
    }

    .prod-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-products-slider-wrapper {
        padding: 0 32px;
    }

    .related-products-swiper.no-slider-grid .swiper-slide {
        flex: 0 0 calc((100% - (14px * 2)) / 3);
        max-width: calc((100% - (14px * 2)) / 3);
    }

    .modern-about-grid {
        gap: 30px;
    }

    .ma-widget {
        padding: 11px 10px;
    }

    .ma-img-1 {
        position: unset;
    }

    .ma-left-col {
        height: 395px;
    }

    .ma-img-1,
    .ma-img-2 {
        height: 300px;
    }

    .ma-left-col {
        min-height: 390px;
        max-width: 600px;
        margin: 0 auto;
    }

    .ma-right-col {
        padding-left: 0;
    }

    .ma-btn {
        margin: 0 auto;
    }

    .modern-products,
    .modern-about,
    .modern-process-section,
    .modern-news-section,
    .modern-inquiry-section {
        padding: 50px 0 !important;
    }

    .modern-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .mp-image {
        height: 105px;
    }

    .modern-news-grid {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 20px;
    }

    .mnc-img.short,
    .mnc-img.tall {
        height: auto;
        aspect-ratio: 16/9;
    }

    .modern-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .mnc-desc {
        line-height: 1.2;
    }

    .mnc-title {
        font-size: 14px;
    }

    .mnh-bg-text {
        font-size: 60px;
    }

    .modern-news-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .mnc-img {
        border-radius: 7px;
        margin-bottom: 15px;
    }

    .product-pagination-right {
        justify-content: flex-start;
    }

    .pg-btn,
    .jump-input,
    .jump-btn {
        height: 20px;
        padding: 0 8px;
        font-size: 10px;
    }

    .pk-pagination-row {
        font-size: 10px;
    }
}

/* =========================================
   MOBILE GLOBAL PADDING OVERRIDES
========================================= */
@media (max-width: 768px) {

    .modern-products,
    .modern-about,
    .modern-process-section,
    .modern-news-section,
    .modern-inquiry-section {
        padding: 50px 0 !important;
    }

    .about-main-title,
    .history-title,
    .certificate-main-title,
    .process-page-heading,
    .download-page-heading,
    .app-title,
    .prod-details-title,
    .related-section-title {
        font-size: 30px !important;
    }

    .prod-block-title,
    .prod-block-title-2 {
        font-size: 24px !important;
    }

    .modern-contact-cards-grid,
    .modern-product-grid,
    .modern-stats-grid {
        grid-template-columns: 1fr;
    }

    .modern-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mp-content h3 {
        font-size: 16px;
    }

    .modern-product-card {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 50px 20px 35px;
        gap: 0;
        row-gap: 0;
    }

    .footer-company {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .footer-company h3 {
        max-width: 100%;
        font-size: 19px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .footer-company p {
        max-width: 100%;
        font-size: 13.5px;
        line-height: 1.65;
    }

    .footer-collapse-column {
        padding: 0;
        margin-bottom: 8px;
    }

    .footer-collapse-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 8px 0;
        cursor: pointer;
        user-select: none;
        font-family: "Oswald", sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.5px;
    }

    .footer-collapse-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    .footer-collapse-column.active .footer-collapse-arrow {
        transform: rotate(180deg);
    }

    .footer-collapse-content {
        display: none;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-collapse-column.active .footer-collapse-content {
        display: block !important;
        padding: 6px 0 14px 0;
        animation: fadeInFooter 0.25s ease forwards;
    }

    .footer-collapse-content li {
        margin-bottom: 6px;
    }

    .footer-collapse-content li a {
        color: #d4d4d4;
        text-decoration: none;
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        line-height: 1.6;
        display: block;
        transition: color 0.2s ease;
    }

    .footer-collapse-content li a:hover {
        color: #00a0e9;
    }

    .contact-column {
        padding-top: 8px;
        margin-top: 4px;
    }

    .contact-column h2 {
        font-family: "Oswald", sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .contact-info p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .social-icons {
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .news-list-card {
        flex-direction: column;
        align-items: stretch;
    }

    .news-list-img {
        width: 100%;
    }

}


@media (max-width: 35em) {

    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .top-bar {
        display: none !important;
    }

    .site-header {
        height: 56px;
        position: sticky;
        top: 0;
    }

    .header-container {
        padding: 0 12px;
    }

    .mobile-hamburger-btn {
        margin-right: 10px;
        font-size: 16px;
    }

    .site-logo img {
        width: 65px;
    }

    .quote-btn {
        height: 32px;
        min-width: 100px;
        font-size: 11px;
        padding: 0 10px;
    }

    .hero {
        min-height: 440px;
        height: 80vh
    }

    .hero-content h1 {
        font-size: 46px
    }

    .hero-scroll {
        display: none
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 18px 30px;
    }

    .footer-company p {
        max-width: 100%;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .hero-swiper,
    .hero-slide {
        height: 380px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .hero-btn {
        padding: 9px 22px;
        font-size: 13px;
    }

    .hero-nav-wrapper {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .hero-btn-prev,
    .hero-btn-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .hero-btn-next-wrapper {
        width: 44px;
        height: 44px;
    }

    .autoplay-progress-svg {
        width: 44px;
        height: 44px;
    }

    /* 6 New Sections Responsive (600px) */
    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .solution-display-title {
        font-size: 30px;
    }

    .solution-tab-card {
        padding: 16px 18px;
    }

    .mpc-title {
        font-size: 12px;
        line-height: 1;
    }

    .mpc-icon {
        width: 30px;
        height: 30px;
    }

    .mpc-icon img {
        width: 15px;
        height: 15px;
    }

    .mpc-step {
        font-size: 7px;
        padding: 6px 8px;
    }

    /* Process Card: Show Card Back by default on MOBILE ONLY */
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        height: auto;
        min-height: 220px;
    }

    .process-card-inner {
        transform: none !important;
        transform-style: flat;
    }

    .process-card-front {
        display: none;
    }

    .process-card-back {
        position: relative;
        transform: none;
        min-height: 220px;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }

    /* News Responsive 600px - Perfect Fit Zero Overlap */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    .news-featured-card {
        min-height: 280px;
        height: 280px;
        width: 100%;
    }

    .news-featured-bottom {
        padding: 8px 12px;
        gap: 8px;
        flex-direction: row;
        width: 100%;
    }

    .news-date {
        font-size: 12px;
        width: auto;
        white-space: nowrap;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .news-featured-title {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
    }

    .news-featured-hover-box {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px 12px;
    }

    .news-hover-title {
        font-size: 14px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .news-hover-desc {
        font-size: 11px;
        line-height: 1.45;
        -webkit-line-clamp: 5;
    }

    .news-hover-date {
        font-size: 11px;
        margin-top: 8px;
    }

    .news-list {
        width: 100%;
        gap: 16px;
    }

    .news-item {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .news-item-thumb {
        width: 100%;
        min-width: 100%;
        height: 170px;
    }

    .news-item-info {
        width: 100%;
        padding: 14px 16px;
        box-sizing: border-box;
        min-width: 0;
    }

    .news-item-title {
        white-space: normal;
        line-height: 1.4;
        font-size: 15px;
    }

    /* Contact Us Mobile (600px) */
    .page-banner {
        height: 140px;
    }

    .contact-page-section {
        padding: 40px 0 50px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        top: -41px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-top: 45px;
        margin-bottom: 35px;
    }

    .contact-info-card {
        padding: 50px 20px 25px;
        min-height: auto;
    }


    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map-wrapper {
        min-height: 250px;
        height: 250px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }

    /* Process Page Mobile (600px) */
    .process-page-section {
        padding: 35px 0 50px;
    }

    .process-page-heading {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .process-items-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-item-card {
        height: 270px;
    }

    .process-item-body {
        padding: 0 18px;
        transform: translateY(60px);
    }

    .process-item-card:hover .process-item-body {
        transform: translateY(-50%);
    }

    /* Download Page Mobile (600px) */
    .download-page-section {
        padding: 35px 0 50px;
    }

    .download-page-heading {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Product Knowledge Page Mobile (600px) */
    .pk-page-section {
        padding: 30px 0 50px;
    }

    .pk-article-thumb {
        height: 190px;
    }

    .sidebar-form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pk-pagination-row {
        justify-content: center;
        gap: 12px;
    }

    /* Product Knowledge Details Page Mobile (600px) */
    .pkd-main-section {
        padding: 25px 0 45px;
    }

    .pkd-top-title {
        font-size: 20px;
    }

    .pkd-top-meta {
        gap: 10px;
        font-size: 12px;
    }

    .pkd-content-main-heading {
        font-size: 20px;
    }

    .pkd-content-sub-heading {
        font-size: 18px;
    }

    .pkd-process-grid {
        grid-template-columns: 1fr;
    }

    .pkd-prev-next-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-next {
        text-align: left;
    }

    .pkd-products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pkd-products-title {
        font-size: 24px;
    }

    /* Application Page Mobile */
    .application-section {
        padding: 20px 0 40px;
    }

    .application-outer-container {
        padding: 0 10px;
    }

    .application-burgundy-block {
        padding: 0px;
        gap: 25px;
        border-radius: 2px;
    }

    .application-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .app-img-left .app-img-col,
    .app-img-right .app-img-col {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .app-img-left .app-text-col,
    .app-img-right .app-text-col {
        order: 2;
        padding: 0 8px;
    }

    .app-img-left .app-img-wrap,
    .app-img-right .app-img-wrap {
        transform: none !important;
        max-width: 100%;
    }

    .app-img-left .app-img-wrap:hover,
    .app-img-right .app-img-wrap:hover {
        transform: none !important;
    }

    .app-img-wrap img {
        height: 200px;
        width: 100%;
    }

    .app-desc {
        font-size: 14px;
    }

    .pk-article-item {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-bottom: 28px;
    }

    .product.pk-articles-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-pagination-right {
        justify-content: center;
    }

    /* Product Details Mobile (600px) */
    .prod-main-img-box {
        height: 280px;
    }

    .prod-details-title {
        font-size: 19px;
    }

    .prod-gallery-arrow {
        opacity: 1;
        visibility: visible;
    }

    .prod-action-btns {
        max-width: 100%;
    }

    .prod-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-img-box {
        height: 200px;
    }

    .related-products-slider-wrapper {
        padding: 0 28px;
    }

    .related-swiper-nav {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .related-products-swiper.no-slider-grid .swiper-slide {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
    }

    /* Factory Equipment Section Mobile (35em) */
    .factory-equipment-section {
        padding: 35px 0 45px;
    }

    .factory-main-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .factory-equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .factory-card-img {
        height: 200px;
    }

    .factory-card-frame {
        padding: 10px;
    }

    /* About Us Page Mobile (35em) */
    .about-intro-section {
        padding: 35px 0 30px;
    }

    .about-intro-image-wrap {
        height: 240px;
        border-radius: 14px;
    }

    .about-main-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-desc p {
        font-size: 13.5px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-stat-item {
        border-right: none;
        border-bottom: 1px solid #cbd5e1;
        padding: 10px 0 16px;
        justify-content: flex-start;
    }

    .about-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-number {
        font-size: 38px;
    }

    /* About Us History Timeline Mobile (35em) */
    .about-history-section {
        padding: 40px 0 55px;
    }

    .history-title {
        font-size: 26px;
    }

    .history-subtitle {
        font-size: 13.5px;
    }

    .history-active-year {
        font-size: 36px;
    }

    .history-active-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .history-slider-wrapper {
        padding: 0 42px;
    }

    .history-swiper-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .history-swiper-prev {
        left: 0;
    }

    .history-swiper-next {
        right: 0;
    }

    .history-card-img {
        height: 160px;
    }

    /* Certificate Section Mobile (35em) */
    .about-certificate-section {
        padding: 40px 0 50px;
    }

    .certificate-main-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ma-title {
        font-size: 30px;
    }

    .ma-left-col {
        height: 280px;
        min-height: auto;
    }

    .ma-img-1 {
        width: calc(50% - 5px);
        height: 207px;
    }

    .ma-img-2 {
        top: 70px;
        width: calc(50% - 5px);
        height: 207px;
    }

    .ma-widget-circle {
        left: 32%;
        width: 100px;
        height: 100px;
        border-width: 6px;
    }

    .ma-circle-inner h4 {
        font-size: 18px;
    }

    .ma-circle-inner p {
        font-size: 8px;
    }

    .ma-widget-top {
        right: 0px;
        padding: 10px 15px;
        gap: 10px;
    }

    .ma-widget-bottom {
        left: 0px;
        padding: 10px 15px;
        gap: 10px;
    }

    .ma-widget-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .ma-widget-text h4 {
        font-size: 18px;
    }

    .ma-widget-text p {
        font-size: 11px;
    }

    .ma-img-1 {
        position: unset;
    }

    .ma-widget-top {
        top: 0px;
        right: 5%;
    }

    .mpc-desc {
        margin-bottom: 0px;
        font-size: 10px;
        line-height: 1;
    }

    .mpc-image {
        display: none;
    }

    .modern-process-card {
        padding: 20px;
    }

    .m-stat-number {
        font-size: 30px;
    }

    .modern-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .modern-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mp-title,
    .mnh-title,
    .mi-title,
    .section-title h2 {
        font-size: 30px;
    }

    .mnh-btn {
        padding: 10px 20px;
    }

    .mi-badge {
        bottom: -62px;
        left: 0;
    }

    .modern-products-header {
        margin-bottom: 30px;
    }

    .ma-eyebrow,
    .mp-eyebrow {
        font-size: 10px;
    }

    .modern-inquiry-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .modern-news-grid {
        grid-template-columns: 1fr;
    }

    .modern-process-grid {
        gap: 7px;
    }

    .mpc-header {
        margin-bottom: 16px;
    }

    .pk-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .news-list-content {
        padding: 20px
    }

    .news-list-title {
        font-size: 14px;
    }

    .news-list-desc {
        font-size: 12px;
    }
}