/*--------------------------------------------------------------
# Core Technical Specification
--------------------------------------------------------------*/
.feature-row{
    position:relative;
    padding:18px;
    border:1px solid #e6e6e6;
    border-radius:12px;
    margin-bottom:18px;
    transition:.3s;
}

.feature-row:hover{
    border-color:#0d6efd;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:14px;
    padding:8px 16px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.feature-btn:hover{
    background:#084298;
    color:#fff;
    transform:translateX(3px);
}

.card-title-link{
    text-decoration:none;
    color:inherit;
}

.card-title-link:hover h3{
    color:#0d6efd;
}

.feature-btn{
    display:inline-block;
    margin-top:12px;
    padding:8px 18px;
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.feature-btn:hover{
    background:#084298;
    color:#fff;
}

.grade-link{
    display:inline-block;
    margin-top:20px;
    font-weight:600;
    text-decoration:none;
}


.grades-section{
    padding:90px 0;
    background:#ffffff;
}

.grades-title{
    font-size:40px;
    font-weight:800;
    color:#17233c;
    line-height:1.2;
    margin:15px 0 20px;
}

.grades-lead{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

.spec-card{
    height:100%;
    background:#fff;
    border:1px solid #d9e6f2;
    border-top:4px solid #0ba5ec;
    border-radius:20px;
    padding:18px 38px;
    transition:.35s;
    box-shadow:0 4px 18px rgba(0,0,0,.04);
}

.spec-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.spec-label{
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#0ba5ec;
    margin-bottom:5px;
}

.spec-value{
    font-size:24px;
    font-weight:800;
    color:#17233c;
    line-height:1.2;
    margin-bottom:5px;
}

.spec-desc{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#5d6778;
}

@media(max-width:991px){

    .grades-section{
        padding:70px 0;
    }

    .grades-title{
        font-size:36px;
    }

    .grades-lead{
        font-size:18px;
    }

    .spec-card{
        padding:30px;
    }

    .spec-value{
        font-size:34px;
    }

}

@media(max-width:767px){

    .grades-title{
        font-size:30px;
    }

    .grades-lead{
        font-size:17px;
    }

    .spec-value{
        font-size:28px;
    }

    .spec-desc{
        font-size:17px;
    }

}


.product-grid{
    --bs-gutter-x:32px;
    --bs-gutter-y:32px;
}

.spec-card{
    height:100%;
}
.stats-bar{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stats-bar > div{
    text-align:center;
    padding:15px 10px;
}

.stats-bar strong{
    display:block;
    margin-bottom:8px;
}

.stats-bar span{
    display:block;
    line-height:1.3;
    word-break:break-word;
    overflow-wrap:break-word;
    hyphens:auto;
}

/* Tablet */
@media (max-width:991px){

    .stats-bar{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .stats-bar > div{
        padding:15px 10px;
    }

    .stats-bar strong{
        font-size:17px !important;
    }

    .stats-bar span{
        font-size:16px !important;
    }
}

/* Mobile */
@media (max-width:575px){

    .stats-bar{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .stats-bar > div{
        padding:12px 8px;
    }

    .stats-bar strong{
        font-size:15px !important;
    }

    .stats-bar span{
        font-size:14px !important;
        line-height:1.35;
    }
}

.process-section{
    padding:70px 0;
}

.section-title{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}

.section-no{
    font-size:22px;
    font-weight:700;
    color:#008ea5;
    min-width:26px;
}

.section-title h2{
    margin:0;
    font-size:34px;
    font-weight:700;
    position:relative;
    flex:1;
}

.section-title h2:after{
    content:"";
    position:absolute;
    left:100%;
    top:50%;
    margin-left:25px;
    width:100%;
    max-width:420px;
    height:1px;
    background:#e2e2e2;
}

.process-wrapper{
    display:grid;
    grid-template-columns:1fr 40px 1fr 40px 1fr;
    align-items:center;
    gap:0;
}

.process-card{
    background:#fff;
    border:1px solid #e8e8e8;
    padding:28px;
    min-height:235px;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-6px);
    border-color:#0093b2;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.step-title{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#0093b2;
    letter-spacing:1px;
    margin-bottom:16px;
    text-transform:uppercase;
}

.process-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:15px;
}

.process-card p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin:0;
}

.process-arrow{
    text-align:center;
    color:#bdbdbd;
    font-size:26px;
}

@media(max-width:991px){

.process-wrapper{
    grid-template-columns:1fr;
    gap:20px;
}

.process-arrow{
    transform:rotate(90deg);
}

.section-title{
    flex-wrap:wrap;
}

.section-title h2{
    font-size:28px;
}

.section-title h2:after{
    display:none;
}

.process-card{
    min-height:auto;
}

}

/*====================================
TECHNICAL SPECIFICATIONS
=====================================*/

.tech-spec-section{ padding-top:40px; padding-bottom:20px;

}

.tech-table{

    border:1px solid #e5e5e5;

    border-radius:12px;

    overflow:hidden;

    background:#fff;

}

.tech-row{

    display:grid;

    grid-template-columns:260px 1fr;

    border-bottom:1px solid #ececec;

    transition:.3s;

}

.tech-row:last-child{

    border-bottom:none;

}

.tech-row:hover{

    background:#f8fcfd;

}

.tech-property{

    background:#f6f8f9;

    padding:18px 24px;

    font-weight:600;

    color:#0b2239;

    border-right:1px solid #ececec;

}

.tech-value{

    padding:18px 24px;

    color:#555;

    line-height:1.7;

}

@media(max-width:768px){

.tech-row{

    grid-template-columns:1fr;

}

.tech-property{

    border-right:none;

    border-bottom:1px solid #ececec;

}

}

/*====================================
APPLICATION SYSTEMS
=====================================*/

.application-section{

    padding:80px 0;

}

.application-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    border:1px solid #e7e7e7;

    background:#fff;

}

.application-card{

    padding:34px;

    border-right:1px solid #e7e7e7;

    transition:.35s;

    min-height:270px;

    display:flex;

    flex-direction:column;

}

.application-card:last-child{

    border-right:none;

}

.application-card:hover{

    background:#f8fcfd;

}

.application-type{

    font-size:14px;

    font-weight:700;

    color:#008ea5;

    letter-spacing:1px;

    margin-bottom:20px;

}

.application-card h3{

    font-size:20px;

    font-weight:700;

    line-height:1.4;

    margin-bottom:24px;

    color:#0b2239;

}

.application-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;

    margin-top:auto;

}

@media(max-width:991px){

.application-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.application-grid{

    grid-template-columns:1fr;

}

.application-card{

    border-right:none;

    border-bottom:1px solid #e7e7e7;

}

.application-card:last-child{

    border-bottom:none;

}

}

/*====================================
HANDLING & STORAGE
=====================================*/

.handling-section{

   padding-bottom:80px; padding-top:20px;

}

.handling-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.handling-box{

    background:#fff;

    border:1px solid #e6e6e6;

    border-radius:10px;

    overflow:hidden;

}

.handling-box h4{

    margin:0;

    padding:18px 25px;

    background:#f7fbfc;

    color:#008ea5;

    font-size:18px;

    font-weight:700;

    border-bottom:1px solid #e6e6e6;

}

.handling-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 25px;

    border-bottom:1px solid #efefef;

}

.handling-row:last-child{

    border-bottom:none;

}

.handling-row span{

    color:#666;

    font-size:15px;

}

.handling-row strong{

    color:#0b2239;

    font-size:15px;

    font-weight:600;

    text-align:right;

}

.handling-box:hover{

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

@media(max-width:991px){

.handling-grid{

    grid-template-columns:1fr;

}

}


.section-title {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: #142744;
}

.section-title span {
    color: #0b8b78;
}


/* =========================================
   BORON NITRIDE - TECHNICAL SPECIFICATIONS
   ========================================= */

.bn-spec-section {
    padding: 25px 0;
}

.bn-spec-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #0e2344;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(14, 35, 68, 0.15);
}


/* Individual Card */

.bn-spec-card {
    position: relative;
    min-height: 205px;
    padding: 30px 18px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.35s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}


/* Remove border from last card */

.bn-spec-card:last-child {
    border-right: none;
}


/* Hover */

.bn-spec-card:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-3px);
}


/* Icon */

.bn-spec-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition: all 0.35s ease;
}


.bn-spec-card:hover .bn-spec-icon {
    transform: scale(1.08);
}


/* Main Value */

.bn-spec-value {
    color: #079b87;

    font-size: 20px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.5px;

    margin-bottom: 7px;
}


.bn-spec-value span {
    font-size: 20px;
    font-weight: 700;
}


/* Superscript */

.bn-spec-value sup {
    font-size: 15px;
    vertical-align: super;
    line-height: 0;
}


/* Unit */

.bn-spec-unit {
    color: #079b87;

    font-size: 15px;
    font-weight: 700;

    margin-top: -3px;
    margin-bottom: 5px;
}


/* Label */

.bn-spec-label {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    max-width: 230px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .bn-spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bn-spec-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .bn-spec-card:nth-child(3) {
        border-right: none;
    }

    .bn-spec-card:nth-child(4),
    .bn-spec-card:nth-child(5) {
        border-bottom: none;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .bn-spec-section {
        padding: 20px 10px;
    }

    .bn-spec-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px;
    }

    .bn-spec-card {
        min-height: 190px;
        padding: 25px 12px;
    }

    .bn-spec-card:nth-child(2),
    .bn-spec-card:nth-child(4) {
        border-right: none;
    }

    .bn-spec-card:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.10);
    }

    .bn-spec-card:nth-child(4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .bn-spec-value {
        font-size: 24px;
    }

    .bn-spec-icon {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .bn-spec-label {
        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .bn-spec-grid {
        grid-template-columns: 1fr;
    }

    .bn-spec-card {
        min-height: 170px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .bn-spec-card:last-child {
        border-bottom: none !important;
    }

}

/* =========================================
   NEXACOOL PRODUCT CARDS
   ========================================= */

.bn-product-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e7ec;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 37, 66, 0.06);
    transition: all 0.35s ease;
}

.bn-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 37, 66, 0.13);
}


/* =========================================
   NAVY TOP
   ========================================= */

.bn-product-top {
    position: relative;

    min-height: 137px;

    padding: 28px 25px 22px;

    background: #19345d;

    color: #ffffff;

    overflow: hidden;
}


/* Product Type */

.bn-product-type {
    position: relative;
    z-index: 2;

    color: #8999ad;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 10px;
}


/* Product Code */

.bn-product-top h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.5px;
}


/* Particle Size */

.bn-product-size {
    position: relative;
    z-index: 2;

    color: #91a6c2;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================
   DECORATIVE CIRCLE
   ========================================= */

.bn-card-circle {
    position: absolute;

    width: 75px;
    height: 75px;

    right: -4px;
    bottom: -18px;

    border-radius: 50%;

    background: rgba(5, 151, 132, 0.13);
}


/* Second subtle circle */

.bn-card-circle::after {
    content: "";

    position: absolute;

    width: 35px;
    height: 35px;

    top: 15px;
    left: 18px;

    border-radius: 50%;

    background: rgba(5, 151, 132, 0.07);
}


/* =========================================
   WHITE BODY
   ========================================= */

.bn-product-body {
    padding: 25px;
    min-height: 310px;

    display: flex;
    flex-direction: column;
}


/* Description */

.bn-product-body > p {
    margin: 0 0 20px;

    color: #667486;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   SPECIFICATIONS
   ========================================= */

.bn-spec-list {
    margin-top: auto;

    border-top: 1px solid #edf0f2;

    border-bottom: 1px solid #edf0f2;

    padding: 7px 0;

    margin-bottom: 18px;
}

.bn-spec-list > div {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    padding: 7px 0;
}

.bn-spec-list span {
    color: #89939f;

    font-size: 12px;

    font-weight: 600;
}

.bn-spec-list strong {
    color: #19345d;

    font-size: 12px;

    font-weight: 800;

    text-align: right;
}


/* =========================================
   VIEW PRODUCT
   ========================================= */

.bn-product-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: #078c79;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition: all 0.3s ease;
}

.bn-product-link span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.bn-product-link:hover {
    color: #19345d;
}

.bn-product-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   CATEGORY HEADING
   ========================================= */

.bn-range-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin: 35px 0 5px;
}

.bn-range-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f7f6;

    font-size: 20px;
}

.bn-range-heading h3 {
    margin: 0 0 2px;

    color: #19345d;

    font-size: 21px;

    font-weight: 800;
}

.bn-range-heading span {
    color: #078c79;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {

    .bn-product-top {
        padding: 25px 22px 20px;
    }

    .bn-product-body {
        padding: 22px;
    }

}


@media (max-width: 991px) {

    .bn-product-top {
        min-height: 140px;
    }

}


@media (max-width: 575px) {

    .bn-product-top {
        min-height: 135px;
    }

    .bn-product-body {
        min-height: auto;
    }

}

/* =========================================
   BORON NITRIDE COATING CARDS
   ========================================= */

.bn-coating-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #e1e7ec;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 28px rgba(16, 37, 66, 0.07);

    transition: all 0.35s ease;
}

.bn-coating-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 42px rgba(16, 37, 66, 0.13);

    border-color: rgba(7, 140, 121, 0.25);
}


/* =========================================
   NAVY HEADER
   ========================================= */

.bn-coating-top {
    position: relative;

    min-height: 175px;

    padding: 32px 35px 28px;

    background: #19345d;

    color: #ffffff;

    overflow: hidden;
}


/* Coating Type */

.bn-coating-type {
    position: relative;

    z-index: 2;

    color: #8b9aae;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


/* Product Code */

.bn-coating-top h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.5px;
}


/* Product Description */

.bn-coating-size {
    position: relative;

    z-index: 2;

    color: #91a6c2;

    font-size: 14px;

    font-weight: 500;
}


/* =========================================
   DECORATIVE CIRCLE
   ========================================= */

.bn-coating-circle {
    position: absolute;

    width: 120px;

    height: 120px;

    right: -25px;

    bottom: -45px;

    border-radius: 50%;

    background: rgba(7, 140, 121, 0.13);
}

.bn-coating-circle::before {
    content: "";

    position: absolute;

    width: 70px;

    height: 70px;

    top: 25px;

    left: 25px;

    border-radius: 50%;

    border: 1px solid rgba(7, 140, 121, 0.14);
}


/* =========================================
   WHITE BODY
   ========================================= */

.bn-coating-body {
    padding: 32px 35px;

    min-height: 330px;

    display: flex;

    flex-direction: column;
}


/* Description */

.bn-coating-body > p {
    color: #667486;

    font-size: 15px;

    line-height: 1.7;

    margin: 0 0 25px;
}


/* =========================================
   SPECIFICATIONS
   ========================================= */

.bn-coating-specs {

    border-top: 1px solid #edf0f2;

    border-bottom: 1px solid #edf0f2;

    padding: 8px 0;

    margin-top: auto;

    margin-bottom: 20px;
}


.bn-coating-spec-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 9px 0;
}


.bn-coating-spec-row span {

    color: #89939f;

    font-size: 13px;

    font-weight: 600;
}


.bn-coating-spec-row strong {

    color: #19345d;

    font-size: 13px;

    font-weight: 800;

    text-align: right;
}


/* =========================================
   VIEW PRODUCT
   ========================================= */

.bn-coating-card .bn-product-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: #078c79;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition: all 0.3s ease;
}


.bn-coating-card .bn-product-link span {

    font-size: 19px;

    transition: transform 0.3s ease;
}


.bn-coating-card .bn-product-link:hover {

    color: #19345d;
}


.bn-coating-card .bn-product-link:hover span {

    transform: translateX(6px);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {

    .bn-coating-top {

        min-height: 160px;

        padding: 28px 28px 25px;
    }

    .bn-coating-body {

        padding: 28px;

    }

}


@media (max-width: 575px) {

    .bn-coating-top {

        min-height: 150px;

        padding: 25px;
    }

    .bn-coating-body {

        padding: 25px;

        min-height: auto;
    }

    .bn-coating-top h3 {

        font-size: 26px;
    }

    .bn-coating-size {

        font-size: 13px;
    }

}

/* =========================================
   APPLICATION AREAS
   ========================================= */

.application-section {
    padding: 80px 0;
    background: #f7f9fa;
}


/* Section Label */

.app-heading {
    margin-bottom: 12px;
    color: #078c79;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Intro */

.application-intro {
    max-width: 850px;
    margin: 0 auto 45px;
    color: #687586;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   APPLICATION GRID
   ========================================= */

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================
   APPLICATION CARD
   ========================================= */

.application-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    min-height: 205px;

    padding: 28px 25px;

    background: #ffffff;

    border: 1px solid #e4e9ed;

    border-radius: 16px;

    box-shadow: 0 7px 25px rgba(16, 37, 66, 0.055);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top accent */

.application-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #078c79;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


/* Decorative circle */

.application-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(7, 140, 121, 0.055);

    pointer-events: none;
}


/* Hover */

.application-card:hover {
    transform: translateY(-6px);

    border-color: rgba(7, 140, 121, 0.25);

    box-shadow: 0 17px 38px rgba(16, 37, 66, 0.10);
}


.application-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   ICON
   ========================================= */

.application-icon {
    position: relative;

    z-index: 2;

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eef7f5;

    font-size: 27px;

    box-shadow:
        inset 0 0 0 1px rgba(7, 140, 121, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.application-card:hover .application-icon {
    transform: scale(1.08);

    background: #e2f2ef;
}


/* =========================================
   CONTENT
   ========================================= */

.application-content {
    position: relative;

    z-index: 2;

    flex: 1;
}


.application-content h4 {
    margin: 0 0 10px;

    color: #19345d;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;
}


.application-content p {
    margin: 0;

    color: #687586;

    font-size: 13.5px;

    line-height: 1.65;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {

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

}


@media (max-width: 767px) {

    .application-section {
        padding: 60px 0;
    }

    .applications-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .application-card {
        min-height: auto;

        padding: 24px 22px;
    }

}


@media (max-width: 480px) {

    .application-card {
        gap: 14px;

        padding: 22px 18px;
    }

    .application-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        font-size: 23px;
    }

    .application-content h4 {
        font-size: 16px;
    }

    .application-content p {
        font-size: 13px;
    }

}

/* =========================================
   BN COMPARISON SECTION
   ========================================= */

.comparison-section {
    padding: 80px 0;
    background: #f7f9fa;
}


/* =========================================
   COMPARISON GRID
   2 CARDS PER ROW
   ========================================= */

.bn-comparison-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-top: 40px;
}


/* =========================================
   COMPARISON CARD
   ========================================= */

.bn-comparison-card {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    min-height: 165px;

    padding: 27px 28px;

    background: #ffffff;

    border: 1px solid #e3e8ec;

    border-radius: 16px;

    box-shadow: 0 7px 25px rgba(16, 37, 66, 0.055);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top teal line */

.bn-comparison-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #078c79;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


/* Decorative circle */

.bn-comparison-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(7, 140, 121, 0.045);

    pointer-events: none;
}


/* Hover */

.bn-comparison-card:hover {

    transform: translateY(-5px);

    border-color: rgba(7, 140, 121, 0.25);

    box-shadow: 0 16px 38px rgba(16, 37, 66, 0.10);
}


.bn-comparison-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   ICON
   ========================================= */

.bn-comparison-icon {

    position: relative;

    z-index: 2;

    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eef7f5;

    font-size: 27px;

    box-shadow:
        inset 0 0 0 1px rgba(7, 140, 121, 0.08);

    transition: all 0.35s ease;
}


.bn-comparison-card:hover .bn-comparison-icon {

    transform: scale(1.08);

    background: #e3f3f0;
}


/* =========================================
   CONTENT
   ========================================= */

.bn-comparison-content {

    position: relative;

    z-index: 2;

    flex: 1;
}


.bn-comparison-content h4 {

    margin: 0 0 9px;

    color: #19345d;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 800;
}


.bn-comparison-content p {

    margin: 0;

    color: #687586;

    font-size: 14px;

    line-height: 1.7;
}


.bn-comparison-content strong {

    color: #078c79;

    font-weight: 800;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {

    .bn-comparison-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 575px) {

    .comparison-section {

        padding: 60px 0;

    }

    .bn-comparison-grid {

        gap: 17px;

        margin-top: 30px;

    }

    .bn-comparison-card {

        gap: 15px;

        padding: 22px 20px;

        min-height: auto;

    }

    .bn-comparison-icon {

        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        font-size: 23px;

    }

    .bn-comparison-content h4 {

        font-size: 17px;

    }

    .bn-comparison-content p {

        font-size: 13px;

    }

}

/* =========================================
   TECHNICAL SPECIFICATIONS
   ========================================= */

.technical-specifications-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================
   TABLE HEADING
   ========================================= */

.data-table-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 45px;

    margin-bottom: 18px;
}


.data-table-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f7f6;

    font-size: 21px;
}


.data-table-heading h3 {
    margin: 0;

    color: #19345d;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.35;
}


/* =========================================
   TABLE WRAPPER
   ========================================= */

.table-responsive {
    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(16, 37, 66, 0.07);
}


/* =========================================
   MAIN TABLE
   ========================================= */

.nexacool-data-table {
    width: 100%;

    min-width: 1050px;

    border-collapse: separate;

    border-spacing: 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   TABLE HEADER
   ========================================= */

.nexacool-data-table thead th {
    padding: 16px 14px;

    background: #19345d;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    text-align: left;

    white-space: nowrap;

    border-right: 1px solid rgba(255, 255, 255, 0.08);
}


.nexacool-data-table thead th:last-child {
    border-right: none;
}


/* =========================================
   TABLE BODY
   ========================================= */

.nexacool-data-table tbody td {
    padding: 15px 14px;

    color: #667486;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;

    white-space: nowrap;

    border-bottom: 1px solid #e9edef;

    border-right: 1px solid #edf0f2;
}


.nexacool-data-table tbody td:last-child {
    border-right: none;
}


.nexacool-data-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   ALTERNATE ROW
   ========================================= */

.nexacool-data-table tbody tr:nth-child(even) {
    background: #f8fafb;
}


.nexacool-data-table tbody tr {
    transition: background 0.25s ease;
}


.nexacool-data-table tbody tr:hover {
    background: #eef7f5;
}


/* =========================================
   GRADE NAME
   ========================================= */

.nexacool-data-table tbody td:first-child {
    color: #19345d;

    font-weight: 800;
}


/* =========================================
   HIGHLIGHTED TEMPERATURE
   ========================================= */

.highlight-temp {
    color: #078c79 !important;

    font-size: 14px !important;
}


/* =========================================
   SECOND TABLE
   ========================================= */

.coating-heading {
    margin-top: 55px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .technical-specifications-section {
        padding: 60px 0;
    }

    .data-table-heading {
        margin-top: 35px;

        margin-bottom: 15px;
    }

    .data-table-heading h3 {
        font-size: 18px;
    }

    .data-table-icon {
        width: 42px;
        height: 42px;

        flex: 0 0 42px;
    }

}

.evaluation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
    margin-top: 10px;
}

.evaluation-tags .atag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 5px 12px;
    border: 1px solid #d9e1ec;
    border-radius: 8px;
    background: #f5f7fa;
    color: #071d3a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}
@media (max-width: 767px) {

    .evaluation-tags {
        gap: 10px;
    }

    .evaluation-tags .atag {
        width: 100%;
        min-height: 48px;
        padding: 10px 15px;
        white-space: normal;
        text-align: center;
    }

}

/* =========================================
   GPBN 1005 - Electronic Thermal Management
   ========================================= */

.gpbn-electronic-section {
    padding: 70px 0;
    background: #fff;
}

.gpbn-content {
    width: 100%;
}

.gpbn-main-title {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #071d3a;
}

.gpbn-main-title span {
    color: #008b7d;
}

.gpbn-description {
    margin: 0;
    color: #183b63;
    font-size: 18px;
    line-height: 1.9;
}

.gpbn-description strong {
    color: #071d3a;
    font-weight: 700;
}


/* Core Sectors */

.gpbn-sector-title {
    margin: 42px 0 25px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #071d3a;
}

.gpbn-sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gpbn-sector-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    padding: 8px 13px;
    border: 1px solid #00a99d;
    border-radius: 8px;
    background: #f4fbfa;
    color: #071d3a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}


/* Why Geocon Products Box */

.gpbn-geocon-box {
    display: flex;
    gap: 25px;
    margin-top: 32px;
    padding: 30px 34px;
    border: 1px solid #f1b72b;
    border-radius: 14px;
    background: #fffbea;
}

.gpbn-geocon-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.gpbn-geocon-content {
    flex: 1;
}

.gpbn-geocon-content h3 {
    margin: 7px 0 12px;
    color: #c45a00;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
}

.gpbn-geocon-content p {
    margin: 0 0 12px;
    color: #183b63;
    font-size: 16px;
    line-height: 1.8;
}

.gpbn-geocon-content ul {
    margin: 0;
    padding-left: 24px;
}

.gpbn-geocon-content li {
    margin-bottom: 5px;
    color: #071d3a;
    font-size: 16px;
    line-height: 1.55;
}

.gpbn-geocon-content li strong {
    font-weight: 600;
}


/* Responsive */

@media (max-width: 991px) {

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

    .gpbn-description {
        font-size: 17px;
    }

}

@media (max-width: 767px) {

    .gpbn-electronic-section {
        padding: 50px 0;
    }

    .gpbn-main-title {
        font-size: 32px;
    }

    .gpbn-description {
        font-size: 16px;
        line-height: 1.75;
    }

    .gpbn-sector-title {
        margin-top: 35px;
    }

    .gpbn-sector-tags {
        gap: 10px;
    }

    .gpbn-sector-tags span {
        width: 100%;
        min-height: 48px;
        padding: 10px 15px;
        text-align: center;
    }

    .gpbn-geocon-box {
        gap: 12px;
        padding: 22px 20px;
        margin-top: 25px;
    }

    .gpbn-geocon-icon {
        flex: 0 0 32px;
        width: 32px;
        font-size: 21px;
    }

    .gpbn-geocon-content h3 {
        font-size: 18px;
    }

    .gpbn-geocon-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gpbn-geocon-content li {
        font-size: 15px;
    }

}