/* ==========================================
   ANTB PRODUCTS PAGES STYLESHEET
   ========================================== */

/* Products Hero Banner */
.products-hero-banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    overflow: hidden;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 25, 44, 0.45) 0%, rgba(11, 25, 44, 0.85) 100%);
    z-index: 1;
}

.products-hero-container {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    width: 100%;
}

.products-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Horizontal Subnav Bar for Products Pages (Matches About Page Subnav) */
.products-horizontal-nav-bar {
    background-color: #0b192c;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid #ff3300;
    position: relative;
    z-index: 50;
    margin: 2rem 0;
    overflow: visible;
}

.products-horizontal-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.products-horiz-item {
    flex: 1;
    min-width: 170px;
    text-align: center;
    position: relative;
}

.products-horiz-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    background-color: #0b192c;
    transition: all 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.products-horiz-item:last-child .products-horiz-link {
    border-right: none;
}

.products-horiz-link:hover,
.products-horiz-link.active {
    background-color: #ff3300;
    color: #ffffff;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

/* Sub-dropdown for Products Subnav */
.products-horiz-item.has-horiz-dropdown {
    position: relative;
}

.products-horiz-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: #0b192c;
    border: 1px solid #1e293b;
    border-top: 3px solid #ff3300;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 10000;
    pointer-events: none;
}

.products-horiz-item.has-horiz-dropdown:hover .products-horiz-dropdown-menu,
.products-horiz-item.has-horiz-dropdown.open .products-horiz-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.products-horiz-dropdown-menu li {
    display: block;
    width: 100%;
}

.products-horiz-dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    text-align: left;
    background-color: #0b192c;
}

.products-horiz-dropdown-menu li:last-child a {
    border-bottom: none;
}

.products-horiz-dropdown-menu li a:hover,
.products-horiz-dropdown-menu li.active>a,
.products-horiz-dropdown-menu li a.active {
    background-color: #ff3300;
    color: #ffffff;
    padding-left: 1.5rem;
}

/* Product Card Grid (Right Column Showcase Cards) */
.product-showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff3300;
}

/* Active / Current Page Showcase Card */
.product-showcase-card.current-page-card {
    border: 2px solid #ff3300 !important;
    box-shadow: 0 4px 18px rgba(255, 51, 0, 0.18) !important;
}

.product-showcase-img-wrap {
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.product-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1.06);
    transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-showcase-img-wrap img {
    transform: scale(1.12);
}

.product-showcase-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #0b192c;
    color: #ffffff;
}

.product-showcase-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.product-showcase-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ff3300;
    text-decoration: none;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-showcase-card:hover .product-showcase-link {
    color: #ffffff;
    transform: translateX(4px);
}

/* Products Main Card and Content Styles */
.products-main-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.products-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b192c;
    margin-bottom: 1.8rem;
    line-height: 1.25;
}

.products-article-section {
    margin-bottom: 2.5rem;
}

.products-lead-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Products Leader Hero Banner */
.products-leader-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    background-color: #0b192c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.products-leader-banner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-leader-banner:hover img {
    transform: scale(1.03);
}

.products-leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(11, 25, 44, 0.95) 100%);
    padding: 1.5rem 2rem;
    color: #ffffff;
    transition: background 0.35s ease;
}

.products-leader-banner:hover .products-leader-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(11, 25, 44, 0.98) 100%);
}

.products-leader-default-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.products-leader-hover-content {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.products-leader-banner:hover .products-leader-default-content {
    display: none;
}

.products-leader-banner:hover .products-leader-hover-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.products-leader-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.products-leader-subtitle {
    font-size: 0.98rem;
    color: #ff3300;
    font-weight: 600;
    margin-top: 0.25rem;
}

.products-leader-extra {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Advantage Pill Badges */
.advantage-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 1rem;
    width: 100%;
    margin: 1.5rem 0 2rem;
}

.advantage-pill-item {
    min-height: 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #ff3300;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b192c;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: break-word;
    min-width: 0;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.advantage-pill-item:hover {
    transform: translateX(4px);
    background-color: #fff5f2;
    box-shadow: 0 4px 12px rgba(255, 51, 0, 0.08);
}

.advantage-pill-item i {
    color: #ff3300;
    font-size: 1rem;
    flex-shrink: 0;
}

.advantage-pill-item span {
    min-width: 0;
    word-break: normal;
    overflow-wrap: break-word;
}

.product-technology-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
}

.advantage-twb-content {
    width: 100%;
    margin: 2rem 0;
}

.advantage-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    gap: 3rem;
    align-items: center;
}

/* Left-side content */
.advantage-text {
    min-width: 0;
}

.advantage-twb-content h2 {
    color: #0b192c;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1.2rem;
}

.advantage-text h3 {
    color: #0b192c;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.4rem 0 0.5rem;
}

.advantage-text ul {
    margin: 0 0 1rem;
    padding-left: 1.3rem;
}

.advantage-text li {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

/* Right-side image */
.advantage-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.advantage-image img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   ADVANTAGE LIST / BULLET POINTS GRID SYSTEM
   ============================================================ */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 2rem;
    width: 100%;
}

.advantage-list.grid-2,
.advantage-list-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.2rem 2.5rem !important;
}

.advantage-list.grid-3,
.advantage-list-3col {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.2rem 2rem !important;
}

.advantage-content-grid .advantage-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.advantage-list li i {
    color: #ff3300;
    font-size: 0.95rem;
    margin-top: 0.22rem;
    flex-shrink: 0;
}

.advantage-list li span {
    flex: 1;
}

/* ============================================================
   PRODUCT SOLUTIONS & APPLICATIONS HEADING
   ============================================================ */

.product-showcase {
    width: 100%;

    margin:
        4rem 0 3rem;
}


.product-showcase-heading {
    width: 100%;

    text-align: center;

    margin-bottom: 2rem;
}


.product-showcase-heading>span {
    display: block;

    margin-bottom: 0.5rem;

    color: #172033;

    font-size: 0.95rem;

    font-weight: 500;

    letter-spacing: 0.03em;

    text-transform: uppercase;
}


.product-showcase-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.3;

    text-align: center;
}


/* ORANGE LINE */

.product-showcase-line {
    width: 55px;

    height: 3px;

    margin:
        0.7rem auto 0;

    background-color: #ff3300;

    border-radius: 3px;
}

.product-showcase-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 1.25rem;

    width: 100%;
}

.product-showcase-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.05);
}


.product-showcase-image {
    width: 100%;

    height: 175px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0.8rem;

    box-sizing: border-box;

    background: #f8fafc;
}


.product-showcase-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;
}


.product-showcase-body {
    min-height: 125px;

    padding: 1.2rem;

    background: #0b192c;

    box-sizing: border-box;
}


.product-showcase-body h3 {
    margin: 0 0 1rem;

    color: #ffffff;

    font-size: 0.85rem;

    line-height: 1.45;

    font-weight: 700;
}


.product-showcase-body a {
    color: #ff3300;

    text-decoration: none;

    font-size: 0.85rem;

    font-weight: 700;

    font-style: italic;
}

.automotive-small-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   AUTOMOTIVE APPLICATION PAGE
   ============================================================ */

.automotive-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0 3rem;
}


/* ============================================================
   AUTOMOTIVE HEADING
   ============================================================ */

.automotive-section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}


.automotive-section-heading span {
    display: block;

    color: #ff3300;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    margin-bottom: 0.4rem;
}


.automotive-section-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2.2rem;

    font-weight: 800;

    line-height: 1.3;
}


.automotive-heading-line {
    width: 55px;

    height: 3px;

    background: #ff3300;

    border-radius: 3px;

    margin: 0.7rem auto 0;
}


/* ============================================================
   INTRODUCTION
   ============================================================ */

.automotive-introduction {
    width: 90%;

    margin: 0 auto 2rem;

    text-align: center;
}


.automotive-introduction p {
    margin: 0;

    color: #334155;

    font-size: 1rem;

    line-height: 1.8;
}


/* ============================================================
   AUTOMOTIVE IMAGES
   ============================================================ */

.automotive-image-box {
    width: 78%;

    margin: 0 auto 2.5rem;

    text-align: center;

    background: #ffffff;
}


.automotive-image-box img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 520px;

    object-fit: contain;

    margin: 0 auto;
}


/* ============================================================
   COMMERCIAL VEHICLES
   ============================================================ */

.commercial-vehicles-content {
    width: 78%;

    margin: 3rem auto 3rem;
}


.commercial-vehicles-content h2 {
    margin: 0 0 1.5rem;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.35;

    text-align: left;
}


.commercial-vehicles-image {
    width: 100%;

    text-align: center;
}


.commercial-vehicles-image img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 650px;

    object-fit: contain;

    margin: 0 auto;
}


/* ============================================================
   PRODUCT SHOWCASE HEADING
   ============================================================ */

.product-technology-showcase {
    width: 100%;

    margin-top: 4rem;

    padding-top: 3rem;

    border-top: 1px solid #e2e8f0;
}


.showcase-heading {
    width: 100%;

    text-align: center;

    margin-bottom: 2rem;
}


.showcase-heading span {
    display: block;

    color: #ff3300;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    margin-bottom: 0.5rem;
}


.showcase-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.3;
}


.showcase-line {
    width: 55px;

    height: 3px;

    margin: 0.7rem auto 0;

    background-color: #ff3300;

    border-radius: 3px;
}


/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.product-technology-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 1.25rem;

    width: 100%;
}


.product-showcase-card {
    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.product-showcase-card:hover {
    transform: translateY(-4px);

    border-color: #ff3300;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1);
}


.product-showcase-img-wrap {
    width: 100%;
    height: 180px;
    padding: 0.25rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.product-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.06);
}


.product-showcase-body {
    min-height: 98px;
    padding: 0.95rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0b192c;
    box-sizing: border-box;
}

.product-showcase-title {
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.38;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.product-showcase-link {
    margin-top: auto;
    color: #ff3300;
    font-size: 0.82rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}


.product-showcase-link:hover {
    color: #ffffff;
}


/* ============================================================
   CUSTOMER CAROUSEL
   ============================================================ */

.customers-worldwide-section {
    padding: 4rem 0;

    margin-top: 4rem;

    background-color: #ffffff;

    border-top: 1px solid #e2e8f0;

    border-bottom: 1px solid #e2e8f0;

    width: 100%;

    overflow: hidden;

    box-sizing: border-box;
}


.section-heading {
    text-align: center;

    margin-bottom: 1.5rem;
}


.section-heading span {
    display: none;
}


.section-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;
}


.logo-slider-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    gap: 0.8rem;

    width: 100%;

    overflow: hidden;
}


.logo-slider-viewport {
    width: 100%;

    overflow: hidden;

    padding: 0.5rem 0;
}


.logo-slider-track {
    display: flex;

    gap: 1.2rem;

    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.logo-item-card {
    min-width: 175px;

    height: 95px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0.8rem 1.2rem;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 4px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03);
}


.logo-item-card img {
    max-width: 130px;

    max-height: 60px;

    object-fit: contain;
}


.logo-slider-arrow {
    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #cbd5e1;

    border-radius: 50%;

    background: #ffffff;

    color: #0b192c;

    cursor: pointer;

    z-index: 5;
}


.logo-slider-arrow:hover {
    background: #ff3300;

    color: #ffffff;

    border-color: #ff3300;
}


.logo-slider-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 0.6rem;

    margin-top: 1.8rem;
}


.logo-dot {
    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #94a3b8;

    cursor: pointer;
}


.logo-dot.active {
    background: #0b192c;

    transform: scale(1.3);
}








/* ==========================================================================
   Customers Worldwide Logo Slider Carousel (Home Page & All Pages)
   ========================================================================== */
.customers-worldwide-section {
    padding: 4rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.logo-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.logo-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0;
}

.logo-slider-track {
    display: flex;
    gap: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-item-card {
    min-width: 175px;
    height: 95px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.logo-item-card:hover {
    border-color: #ff3300;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 0, 0.12);
}

.logo-item-card img {
    max-height: 60px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.25s ease;
}

.logo-item-card:hover img {
    filter: grayscale(0%);
}

.logo-slider-arrow {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0b192c;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 5;
}

.logo-slider-arrow:hover {
    background-color: #ff3300;
    color: #ffffff;
    border-color: #ff3300;
}

.logo-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.logo-dot:hover,
.logo-dot.active {
    background-color: #0b192c;
    transform: scale(1.3);
}



/*===========================products table - Automative page  ==============================================*/

/* ==========================================================================
   AUTOMOTIVE APPLICATION PAGE
   ========================================================================== */


/* ==========================================
   AUTOMOTIVE HERO
   ========================================== */

.automotive-hero {
    background-image: url("images/products/bannerp.png");
}

/* ============================================================
   COMMERCIAL VEHICLES CONTENT
   ============================================================ */

.commercial-vehicles-content {
    width: 78%;

    margin: 2rem auto 3rem;

    text-align: left;
}


.commercial-vehicles-content h2 {
    margin: 0 0 1.5rem;

    color: #111827;

    font-size: 2rem;

    font-weight: 700;

    line-height: 1.3;
}


.commercial-vehicles-image {
    width: 100%;

    margin: 0 auto;
}


.commercial-vehicles-image img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}


/* ==========================================
   AUTOMOTIVE CONTENT
   ========================================== */

.automotive-content {
    width: 100%;
    margin: 2.5rem 0 3rem;
}


/* ==========================================
   PAGE HEADING
   ========================================== */

.automotive-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.automotive-eyebrow {
    display: block;

    color: #ff3300;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    margin-bottom: 0.45rem;
}

.automotive-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;
    font-weight: 800;

    line-height: 1.25;
}

.automotive-heading-line {
    width: 55px;
    height: 3px;

    background: #ff3300;

    border-radius: 3px;

    margin: 0.75rem auto 0;
}


/* ==========================================
   INTRODUCTION
   ========================================== */

.automotive-introduction {
    max-width: 950px;

    margin: 0 auto 2.5rem;

    text-align: center;
}

.automotive-introduction p {
    margin: 0;

    color: #475569;

    font-size: 1rem;
    line-height: 1.8;
}


/* ==========================================
   AUTOMOTIVE IMAGE SECTIONS
   ========================================== */

.automotive-image-section {
    width: 100%;

    margin: 0 0 2.5rem;
}


/* Image card */

.automotive-image-card {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);

    padding: 1rem;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.automotive-image-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Actual model image */

.automotive-image-card img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    margin: 0 auto;
}

/* ============================================================
   AUTOMOTIVE APPLICATION - IMAGE SIZE
   ============================================================ */

.automotive-small-image {
    width: 78%;
    margin: 0 auto 2rem;
    padding: 0.5rem;
    background: #ffffff;
    border: none;
    box-shadow: none;
}


.automotive-small-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 520px;

    object-fit: contain;

    margin: 0 auto;
}


/* ==========================================
   LARGE AUTOMOTIVE IMAGES
   ========================================== */

.automotive-image-section:nth-of-type(1) .automotive-image-card img,
.automotive-image-section:nth-of-type(2) .automotive-image-card img {
    max-height: 650px;
}

.automotive-image-section:nth-of-type(3) .automotive-image-card img,
.automotive-image-section:nth-of-type(4) .automotive-image-card img {
    max-height: 700px;
}


/* ==========================================
   PRODUCT SHOWCASE
   ========================================== */

.automotive-page .product-technology-showcase {
    margin-top: 3rem;
    margin-bottom: 3rem;
}


/* ==========================================
   CUSTOMER CAROUSEL
   ========================================== */

.automotive-customer-section {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
}


/* Keep customer title compact */

.automotive-customer-section .welcome-title-wrap {
    text-align: center;
    margin-bottom: 1.8rem;
}

.automotive-customer-section .welcome-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b192c;
    margin: 0;
}


/* Orange underline */

.automotive-customer-section .orange-underline {
    margin: 0.4rem auto;
    width: 40px;
    height: 3px;
    background: #ff3300;
    border-radius: 2px;
}


/* ==========================================
   CAROUSEL ARROW ICONS
   ========================================== */

.automotive-customer-section .logo-slider-arrow i {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    color: #0b192c;
}

.automotive-customer-section .logo-slider-arrow:hover i {
    color: #ffffff;
}

/* ============================================================
   AUTOMOTIVE APPLICATION PAGE
   ============================================================ */

.automotive-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0 3rem;
}


/* ============================================================
   AUTOMOTIVE HEADING
   ============================================================ */

.automotive-section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}


.automotive-section-heading span {
    display: block;

    color: #ff3300;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    margin-bottom: 0.4rem;
}


.automotive-section-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2.2rem;

    font-weight: 800;

    line-height: 1.3;
}


.automotive-heading-line {
    width: 55px;

    height: 3px;

    background: #ff3300;

    border-radius: 3px;

    margin: 0.7rem auto 0;
}


/* ============================================================
   INTRODUCTION
   ============================================================ */

.automotive-introduction {
    width: 90%;

    margin: 0 auto 2rem;

    text-align: center;
}


.automotive-introduction p {
    margin: 0;

    color: #334155;

    font-size: 1rem;

    line-height: 1.8;
}


/* ============================================================
   AUTOMOTIVE IMAGES
   ============================================================ */

.automotive-image-box {
    width: 78%;

    margin: 0 auto 2.5rem;

    text-align: center;

    background: #ffffff;
}


.automotive-image-box img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 520px;

    object-fit: contain;

    margin: 0 auto;
}


/* ============================================================
   COMMERCIAL VEHICLES
   ============================================================ */

.commercial-vehicles-content {
    width: 78%;

    margin: 3rem auto 3rem;
}


.commercial-vehicles-content h2 {
    margin: 0 0 1.5rem;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.35;

    text-align: left;
}


.commercial-vehicles-image {
    width: 100%;

    text-align: center;
}


.commercial-vehicles-image img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 650px;

    object-fit: contain;

    margin: 0 auto;
}


/* ============================================================
   PRODUCT SHOWCASE HEADING
   ============================================================ */

.product-technology-showcase {
    width: 100%;

    margin-top: 4rem;

    padding-top: 3rem;

    border-top: 1px solid #e2e8f0;
}


.showcase-heading {
    width: 100%;

    text-align: center;

    margin-bottom: 2rem;
}


.showcase-heading span {
    display: block;

    color: #ff3300;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    margin-bottom: 0.5rem;
}


.showcase-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.3;
}


.showcase-line {
    width: 55px;

    height: 3px;

    margin: 0.7rem auto 0;

    background-color: #ff3300;

    border-radius: 3px;
}


/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.product-technology-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 1.25rem;

    width: 100%;
}


.product-showcase-card {
    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.product-showcase-card:hover {
    transform: translateY(-4px);

    border-color: #ff3300;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1);
}


.product-showcase-img-wrap {
    width: 100%;
    height: 180px;
    padding: 0.25rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.product-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.06);
}


.product-showcase-body {
    min-height: 125px;

    padding: 1.2rem;

    display: flex;

    flex-direction: column;

    background-color: #0b192c;

    box-sizing: border-box;
}


.product-showcase-title {
    color: #ffffff;

    font-size: 0.85rem;

    font-weight: 700;

    line-height: 1.45;

    text-transform: uppercase;

    margin-bottom: 1rem;
}


.product-showcase-link {
    margin-top: auto;

    color: #ff3300;

    font-size: 0.82rem;

    font-weight: 700;

    font-style: italic;

    text-decoration: none;
}


.product-showcase-link:hover {
    color: #ffffff;
}


/* ============================================================
   CUSTOMER CAROUSEL
   ============================================================ */

.customers-worldwide-section {
    padding: 4rem 0;

    margin-top: 4rem;

    background-color: #ffffff;

    border-top: 1px solid #e2e8f0;

    border-bottom: 1px solid #e2e8f0;

    width: 100%;

    overflow: hidden;

    box-sizing: border-box;
}


.section-heading {
    text-align: center;

    margin-bottom: 1.5rem;
}


.section-heading span {
    display: none;
}


.section-heading h2 {
    margin: 0;

    color: #0b192c;

    font-size: 2rem;

    font-weight: 800;
}


.logo-slider-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    gap: 0.8rem;

    width: 100%;

    overflow: hidden;
}


.logo-slider-viewport {
    width: 100%;

    overflow: hidden;

    padding: 0.5rem 0;
}


.logo-slider-track {
    display: flex;

    gap: 1.2rem;

    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.logo-item-card {
    min-width: 175px;

    height: 95px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0.8rem 1.2rem;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 4px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03);
}


.logo-item-card img {
    max-width: 130px;

    max-height: 60px;

    object-fit: contain;
}


.logo-slider-arrow {
    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #cbd5e1;

    border-radius: 50%;

    background: #ffffff;

    color: #0b192c;

    cursor: pointer;

    z-index: 5;
}


.logo-slider-arrow:hover {
    background: #ff3300;

    color: #ffffff;

    border-color: #ff3300;
}


.logo-slider-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 0.6rem;

    margin-top: 1.8rem;
}


.logo-dot {
    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #94a3b8;

    cursor: pointer;
}


.logo-dot.active {
    background: #0b192c;

    transform: scale(1.3);
}















































































@media (max-width: 600px) {
    .advantage-pill-grid {
        grid-template-columns: 1fr;
    }

    .product-technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }

    /*Automative Content Responsive design */

    .automotive-content {
        margin-top: 1.5rem;
    }

    .automotive-heading h2 {
        font-size: 1.45rem;
    }

    .automotive-eyebrow {
        font-size: 0.75rem;
    }

    .automotive-introduction p {
        font-size: 0.9rem;
    }

    .automotive-image-section {
        margin-bottom: 1.5rem;
    }

    .automotive-image-card {
        padding: 0.5rem;
        border-radius: 6px;
    }

    .automotive-customer-section {
        padding: 1.2rem;
    }

    .automotive-customer-section .welcome-heading {
        font-size: 1.25rem;
    }
}





















































































/* Product Pages Tablet & Mobile Base Utilities */
@media (max-width: 900px) {
    .products-horizontal-nav-list {
        flex-direction: column;
    }

    .products-horiz-item {
        width: 100%;
        text-align: left;
    }

    .products-horiz-link {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: flex-start;
        text-align: left;
        padding: 0.95rem 1.25rem;
    }

    .products-horiz-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        background-color: #060e18;
    }

    .products-horiz-item.has-horiz-dropdown.open .products-horiz-dropdown-menu {
        display: block;
    }

    .products-horiz-dropdown-menu li a {
        padding-left: 2rem;
        justify-content: flex-start;
        text-align: left;
    }

    .advantage-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantage-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantage-image {
        order: 2;
    }

    .advantage-image img {
        max-width: 500px;
    }

    /* ==========================================
   AUTOMOTIVE PAGE MEDIUM RESPONSIVE
   ========================================== */

    .automotive-heading h2 {
        font-size: 1.7rem;
    }

    .automotive-introduction {
        text-align: left;
    }

    .automotive-image-card {
        padding: 0.75rem;
    }
}

/* ==========================================
   HOT STAMPED PRODUCTS SHOWCASE GRID
   ========================================== */
.product-hot-stamped-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

/* ==========================================
   OTHER LASER APPLICATION SHOWCASE GRID & FILTER
   ========================================== */
.other-laser-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.filter-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2.5rem 0;
}

.filter-tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: #0b192c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-tab-btn:hover {
    background-color: #ff3300;
}

.filter-tab-btn.active {
    background-color: #ff3300;
}



.other-laser-showcase-grid .product-showcase-link {
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.other-laser-showcase-grid .product-showcase-link:hover {
    background-color: #ff3300 !important;
    transform: translateY(-2px);
}

/* ==========================================
   FEASIBILITY ANALYSIS IMAGE GALLERY & LIGHTBOX MODAL
   ========================================== */

.feasibility-gallery-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.feasibility-gallery-viewport {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-slice-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.gallery-slice-item,
.gallery-box-tile {
    position: absolute;
    overflow: hidden;
    will-change: transform, opacity;
    box-sizing: border-box;
    pointer-events: none;
}

.gallery-slice-img {
    position: absolute;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    pointer-events: none;
}

.gallery-active-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    display: block;
    z-index: 1;
}

.gallery-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
}

.gallery-arrow-btn:hover {
    background: #ff3300;
    border-color: #ff3300;
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-btn.prev-btn {
    left: 10px;
}

.gallery-arrow-btn.next-btn {
    right: 10px;
}

.gallery-overlay-hint {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(11, 25, 44, 0.75);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: opacity 0.2s ease;
    opacity: 0.85;
}

.feasibility-gallery-viewport:hover .gallery-overlay-hint {
    opacity: 1;
    background: rgba(255, 51, 0, 0.85);
}

.gallery-dots-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.9rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-dot.active {
    background: #ff3300;
    width: 22px;
    border-radius: 4px;
}

/* Modal Lightbox */
.feasibility-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.feasibility-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.feasibility-modal-card {
    background: #ffffff;
    border-radius: 10px;
    max-width: 840px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feasibility-modal-overlay.active .feasibility-modal-card {
    transform: scale(1);
}

.modal-top-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-top-close:hover {
    background: #ff3300;
    transform: scale(1.1);
}

.modal-image-stage {
    position: relative;
    width: 100%;
    height: 460px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-current-image {
    max-width: 100%;
    max-height: calc(100% - 60px);
    object-fit: contain;
    transition: opacity 0.3s ease;
    user-select: none;
}

.modal-stage-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-stage-arrow:hover {
    background: #ff3300;
    border-color: #ff3300;
    transform: translateY(-50%) scale(1.1);
}

.modal-stage-arrow.stage-prev {
    left: 15px;
}

.modal-stage-arrow.stage-next {
    right: 15px;
}

.modal-thumbnails-wrapper {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 15;
    max-width: 90%;
}

.modal-thumbnails-track {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.modal-thumbnails-track::-webkit-scrollbar {
    display: none;
}

.modal-thumb {
    width: 52px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-thumb:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.modal-thumb.active {
    border-color: #ff3300;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 51, 0, 0.6);
}

.modal-thumb-nav {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.modal-thumb-nav:hover {
    color: #ff3300;
}

.modal-bottom-controls {
    background: #ffffff;
    padding: 0.75rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
}

.modal-controls-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-ctrl-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-ctrl-btn:hover {
    background: #ff3300;
    color: #ffffff;
    border-color: #ff3300;
}

.modal-counter-badge {
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 700;
    color: #0b192c;
    margin-left: 0.5rem;
    letter-spacing: 0.5px;
}

.modal-close-btn {
    color: #64748b;
    font-size: 1.1rem;
}

.modal-close-btn:hover {
    background: #ff3300;
    color: #ffffff;
}

@media (max-width: 768px) {
    .modal-image-stage {
        height: 320px;
    }

    .modal-thumb {
        width: 42px;
        height: 30px;
    }
}

.feasibility-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .feasibility-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feasibility-gallery-container {
        max-width: 100%;
        padding: 0.8rem;
    }

    .feasibility-gallery-viewport {
        height: 240px;
        max-height: 240px;
    }
}

@media (max-width: 480px) {
    .feasibility-gallery-viewport {
        height: 200px;
        max-height: 200px;
    }
}

/* ============================================================
   GLOBAL PRODUCT SHOWCASE 2-COLUMN RESPONSIVE ON MOBILE
   ============================================================ */

.rd-support-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* ============================================================
   TABLET RESPONSIVENESS FOR ALL PRODUCT PAGES (769px - 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .products-hero-banner {
        padding: 3.5rem 1.5rem;
    }

    .products-hero-title {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .about-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-content {
        width: 100%;
    }

    /* Horizontal Sub-Navbar on Tablet & Mobile */
    .products-horizontal-nav-bar {
        border-radius: 6px;
        margin-bottom: 2rem;
        overflow: hidden;
    }

    .products-horizontal-nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .products-horiz-item {
        width: 100%;
        min-width: 0;
        flex: none;
    }

    .products-horiz-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        font-size: 0.88rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .products-horiz-link i {
        transition: transform 0.25s ease;
        padding: 0.4rem 0.6rem;
        margin: -0.4rem -0.6rem -0.4rem 0.4rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .products-horiz-item.has-horiz-dropdown.open>.products-horiz-link i {
        transform: rotate(180deg);
    }

    .products-horiz-item:last-child .products-horiz-link {
        border-bottom: none;
    }

    .products-horiz-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        background-color: #07101e;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0;
    }

    .products-horiz-item.has-horiz-dropdown.open .products-horiz-dropdown-menu {
        display: block !important;
    }

    .products-horiz-dropdown-menu li a {
        padding: 0.85rem 1.5rem 0.85rem 2rem;
        font-size: 0.84rem;
        background-color: #07101e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Content Layouts on Tablet */
    .advantage-content-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .advantage-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.5rem;
    }

    .advantage-list.grid-3,
    .advantage-list-3col {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .advantage-image {
        width: 100%;
        max-width: 540px;
        margin: 1.5rem auto 0;
        text-align: center;
    }

    .advantage-image img {
        max-width: 100%;
        height: auto;
    }

    .products-main-card {
        padding: 2rem 1.5rem;
    }

    .products-main-heading {
        font-size: 1.85rem;
    }

    .products-leader-banner img {
        height: 300px;
    }

    .advantage-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .feasibility-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feasibility-gallery-container {
        max-width: 580px;
        margin: 0 auto;
    }

    .feasibility-gallery-viewport {
        height: 280px;
    }

    .steel-comparison-row {
        gap: 2rem;
        justify-content: center;
    }

    .phs-table-container {
        max-width: 650px;
        margin: 2rem auto;
    }

    /* Tablet Product Showcase Grids */
    .product-technology-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .rd-support-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
        max-width: 780px;
        margin: 2rem auto 0;
    }

    .other-laser-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .product-hot-stamped-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        max-width: 700px;
        margin: 2rem auto 0;
    }

    .product-showcase-card {
        border-radius: 8px;
    }

    .product-showcase-img-wrap {
        height: 155px;
        padding: 0.25rem;
        background: #ffffff;
    }

    .product-showcase-body {
        padding: 0.85rem 0.75rem !important;
        min-height: 90px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .product-showcase-title {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.4rem !important;
        flex-grow: 1 !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .product-showcase-link {
        margin-top: auto !important;
        font-size: 0.76rem !important;
    }

    /* Customer Logo Slider on Tablet */
    .customers-worldwide-section {
        padding: 2.5rem 1.5rem;
        margin: 2.5rem 0;
    }

    .logo-item-card {
        flex: 0 0 calc(25% - 15px);
        min-width: 140px;
    }
}

/* ============================================================
   MOBILE RESPONSIVENESS FOR ALL PRODUCT PAGES (<= 768px)
   ============================================================ */
@media (max-width: 768px) {

    .products-main-card {
        padding: 1.5rem 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .products-main-heading {
        font-size: 1.45rem !important;
        margin-bottom: 1.2rem !important;
    }

    .products-article-section {
        margin-bottom: 1.5rem !important;
    }

    /* Adjust image length / height on mobile view so it is not overly long/tall */
    .products-leader-banner {
        margin-bottom: 1.5rem !important;
        border-radius: 8px !important;
    }

    .products-leader-banner img {
        height: 220px !important;
        object-fit: cover !important;
    }

    .products-leader-overlay {
        padding: 0.9rem 1rem !important;
    }

    .products-leader-title {
        font-size: 1.1rem !important;
    }

    .products-leader-subtitle {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    .products-lead-text {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.2rem !important;
    }

    .twb-highlight-callout p {
        text-align: justify !important;
        text-align-last: left !important;
        text-justify: inter-word !important;
    }

    /* Fix overflow inside 9 boxes on mobile view - full width single column with clean text fit */
    .advantage-pill-grid {
        grid-template-columns: 1fr !important;
        gap: 0.7rem !important;
        width: 100% !important;
        margin: 1.2rem 0 1.5rem !important;
    }

    .advantage-pill-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.88rem !important;
        min-height: 48px !important;
        border-radius: 6px !important;
    }

    .advantage-pill-item i {
        font-size: 0.95rem !important;
    }

    .advantage-list,
    .advantage-list.grid-2,
    .advantage-list-2col,
    .advantage-list.grid-3,
    .advantage-list-3col {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin: 1rem 0 1.5rem !important;
    }

    .product-technology-grid,
    .product-hot-stamped-grid,
    .other-laser-showcase-grid,
    .rd-support-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .different-objectives-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .product-showcase-card {
        border-radius: 6px !important;
        cursor: pointer;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
        -webkit-tap-highlight-color: rgba(255, 51, 0, 0.15);
    }

    .product-showcase-img-wrap {
        height: 135px !important;
        padding: 0.25rem !important;
        background: #ffffff !important;
    }

    .product-showcase-img-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        transform: scale(1.06) !important;
        transition: transform 0.3s ease;
    }

    /* Weight Reduction Images on Mobile View */
    .weight-reduction-img-grid {
        gap: 0.65rem !important;
        margin: 0.8rem 0 1.5rem !important;
    }

    .weight-reduction-img-card {
        padding: 0.35rem !important;
        background: #ffffff !important;
        height: 120px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .weight-reduction-img-card img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        transform: none !important;
    }

    .weight-reduction-single-card {
        padding: 0.35rem 0.5rem !important;
        margin: 0.8rem 0 1.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .weight-reduction-single-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 240px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    /* Tailored Weld Images on Mobile View */
    .tailored-weld-top-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        margin-bottom: 2rem !important;
    }

    .tailored-weld-img-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .tailored-weld-img-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 260px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    .tailored-weld-single-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .tailored-weld-single-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 240px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    /* Innovative Process Ablation Images on Mobile View */
    .innovative-process-img-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        margin-bottom: 1.5rem !important;
    }

    .innovative-process-img-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 280px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    /* Laser Hardening Images on Mobile View */
    .advantage-content-grid .advantage-image {
        padding: 0.35rem 0.5rem !important;
        margin-top: 1rem !important;
    }

    .advantage-content-grid .advantage-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hardening-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.65rem !important;
    }

    .hardening-image-grid .img-card {
        padding: 0.35rem 0.35rem 0.6rem !important;
        min-height: 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .hardening-image-grid .img-card img {
        height: auto !important;
        max-height: 115px !important;
        width: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }

    .hardening-image-grid .img-caption {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-top: 0.35rem !important;
    }

    /* Laser Cladding Images on Mobile View */
    .stellite-deposition-box {
        padding: 1rem 0.8rem !important;
        margin: 1.5rem 0 !important;
    }

    .cladding-images-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1rem 0 0.5rem !important;
    }

    .cladding-images-row .img-card {
        padding: 0.35rem 0.35rem 0.65rem !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .cladding-images-row .img-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px !important;
        object-fit: contain !important;
        display: block !important;
        border-radius: 6px !important;
        transform: none !important;
    }

    .cladding-images-row .img-caption {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-top: 0.45rem !important;
    }

    /* Multi-Axis Laser Welding Images on Mobile View */
    .multi-axis-card {
        padding: 1.2rem 1rem !important;
        border-radius: 8px !important;
    }

    .multi-axis-img-box {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 6px !important;
    }

    .multi-axis-img-box img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    /* R&D Support Pages Images on Mobile View */
    .prototype-img-grid,
    .feasibility-img-grid,
    .advanced-projects-img-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1rem 0 1.5rem !important;
    }

    .prototype-img-card,
    .feasibility-img-card,
    .advanced-projects-img-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .prototype-img-card img,
    .feasibility-img-card img,
    .advanced-projects-img-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    /* Stamping Support Page Images on Mobile View */
    .stamping-support-img-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .stamping-support-img-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    .tooling-trial-section {
        padding: 0.8rem 0.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .tooling-trial-card {
        padding: 0.35rem 0.5rem !important;
        background: #ffffff !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .tooling-trial-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 240px !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }

    .product-showcase-body {
        padding: 0.65rem 0.55rem !important;
        min-height: 78px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        transition: background-color 0.25s ease;
    }

    .product-showcase-title {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.35rem !important;
        flex-grow: 1 !important;
        display: flex !important;
        align-items: flex-start !important;
        transition: color 0.25s ease;
    }

    .product-showcase-link {
        margin-top: auto !important;
        font-size: 0.74rem !important;
        font-weight: 700 !important;
        transition: color 0.25s ease, transform 0.2s ease;
    }

    /* Interactive Hover & Touch Active Effects on Mobile & Tablet */
    .product-showcase-card:hover,
    .product-showcase-card:active,
    .product-showcase-card:focus-within,
    .product-showcase-card.touch-active {
        transform: translateY(-4px) !important;
        border-color: #ff3300 !important;
        box-shadow: 0 12px 28px rgba(255, 51, 0, 0.22), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }

    .product-showcase-card:hover .product-showcase-img-wrap img,
    .product-showcase-card:active .product-showcase-img-wrap img,
    .product-showcase-card.touch-active .product-showcase-img-wrap img {
        transform: scale(1.05) !important;
    }

    .product-showcase-card:hover .product-showcase-link,
    .product-showcase-card:active .product-showcase-link,
    .product-showcase-card.touch-active .product-showcase-link {
        color: #ffffff !important;
        transform: translateX(3px) !important;
    }

    .showcase-heading h2 {
        font-size: 1.45rem !important;
    }

    .showcase-heading span {
        font-size: 0.78rem !important;
    }
}

@media (max-width: 600px) {
    .customers-worldwide-section {
        padding: 2.5rem 0;
    }

    .logo-item-card {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        height: 105px;
    }

    .logo-slider-wrapper {
        gap: 0.4rem;
    }

    .logo-slider-track {
        gap: 1rem;
    }

    .logo-slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-main-card {
        padding: 1.25rem 0.85rem !important;
    }

    .products-main-heading {
        font-size: 1.3rem !important;
    }

    .products-leader-banner img {
        height: 180px !important;
    }

    .products-leader-overlay {
        padding: 0.75rem 0.85rem !important;
    }

    .products-leader-title {
        font-size: 0.98rem !important;
    }

    .products-leader-subtitle {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }

    .advantage-pill-grid {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
    }

    .advantage-pill-item {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.84rem !important;
        gap: 0.65rem !important;
    }
}

/* 2x2 Grid for Multi-Axis Laser Welding Page */
.multi-axis-2x2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

@media (max-width: 900px) {
    .multi-axis-2x2-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* 3 Column Category Grid for Advantages of Tailored Blanks */
.advantages-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .advantages-3col-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Justify all content in all product pages on Tablet and Mobile */
    .products-main-card p,
    .products-article-section p,
    .advantage-twb-content p,
    .advantage-twb-content ul:not(.products-horiz-dropdown-menu) li,
    .advantage-twb-content ul:not(.products-horiz-dropdown-menu) li span,
    .advantage-text p,
    .advantage-list li span,
    .advantages-3col-grid ul li span,
    .automotive-introduction p,
    .material-opt-intro p,
    .material-opt-body p,
    .twb-highlight-callout p,
    .products-lead-text,
    .stamping-support-content p,
    .specific-design-grid span {
        text-align: justify !important;
        text-align-last: left !important;
        text-justify: inter-word !important;
    }
}

/* 4-column Prototyping Support Grid */
.prototyping-support-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.prototyping-support-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: #f8fafc !important;
    padding: 0.9rem 1.1rem !important;
    border-radius: 6px !important;
    border-left: 3px solid #ff3300 !important;
    box-sizing: border-box !important;
    min-height: 56px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prototyping-support-item i {
    color: #ff3300 !important;
    font-size: 1.05rem !important;
    width: 22px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
}

.prototyping-support-item span {
    font-weight: 600 !important;
    color: #0b192c !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

@media (max-width: 1024px) {
    .prototyping-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }

    .prototyping-support-item {
        padding: 0.85rem 1rem !important;
        min-height: 56px !important;
    }

    .prototyping-support-item span {
        font-size: 0.88rem !important;
    }
}

@media (max-width: 600px) {
    .prototyping-support-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .prototyping-support-item {
        padding: 0.8rem 1rem !important;
        min-height: 48px !important;
    }

    .prototyping-support-item span {
        font-size: 0.9rem !important;
    }
}

/* 3-column Specific Design Studies Grid */
.specific-design-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 1.8rem;
}

@media (max-width: 991px) {
    .specific-design-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .specific-design-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* 2-column Comparison & Risk Grid */
.comparison-risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .comparison-risk-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* Congress Card Grid & Boxes (Desktop: 4 on single row, Mobile: 1 column) */
.congress-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    width: 100%;
}

@media (max-width: 991px) {
    .congress-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

@media (max-width: 576px) {
    .congress-card-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

.congress-card-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1rem;
    border-radius: 6px;
    border-left: 3px solid #ff3300;
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.6rem;
    width: 100%;
    box-sizing: border-box;
    min-height: 56px;
}

.congress-card-box i {
    color: #ff3300;
    font-size: 1rem;
    flex-shrink: 0;
}

.congress-card-box span {
    text-align: left;
    line-height: 1.35;
    display: block;
}

/* Fracture Comparison Grid & Cards */
.fracture-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fracture-compare-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fracture-compare-img-wrap {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.fracture-compare-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.fracture-compare-caption {
    font-weight: 700;
    color: #0b192c;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 0.65rem;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .fracture-compare-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .fracture-compare-card {
        padding: 0.5rem 0.5rem 0.8rem !important;
        border-radius: 8px !important;
    }

    .fracture-compare-img-wrap {
        padding: 0.2rem !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin-bottom: 0.4rem !important;
    }

    .fracture-compare-img-wrap img {
        height: auto !important;
        max-height: 220px !important;
        width: 100% !important;
        object-fit: contain !important;
        display: block !important;
        transform: none !important;
    }
}

/* Tooling Trial Grid */
.tooling-trial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .tooling-trial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}