#logo {
    transform: scale(1.5);  /* increase size */
}
.ul-check.no-bullet {
    list-style: none;
    padding-left: 0;
}

.ul-check.no-bullet li {
    background: none !important; /* removes theme check icon */
    padding-left: 0;
    margin-bottom: 14px;
}
#mainmenu li ul{
    width: 270px;          /* Increase as needed (320-380px) */
    min-width: 270px;
}

#mainmenu li ul li{
    width:100%;
}

#mainmenu li ul li a{
    white-space: nowrap;   /* Keep text on one line */
    display:block;
    padding:6px 10px;
}

.hero-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    color:#dcb13b;
    text-transform:uppercase;
    font-size:16px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:5px;
}

.hero-eyebrow .line{
    width:45px;
    height:2px;
    background:#cf6b2d;
}

/* ---------- */

.industry-title {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 0.9;
    text-transform: uppercase; font-size:100px;
}

.industry-title .line2 {
    display: inline;
    margin-top: 0;
}

.industry-title .amp {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 0.85em;
    margin-right: 8px;
}

.industry-title .line2 span{

    background:linear-gradient(#cf6c2d,#ffbe39);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* ---------- */

.industry-desc{

    margin-top:10px;

    width:700px;

    font-size:20px;

    color:#ddd;

    line-height:1.6;

}

/* ===============================
   HERO BUTTONS
=================================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-btn-primary,
.hero-btn-secondary{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:320px;
    height:62px;
    padding:0 35px;
    text-decoration:none !important;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    transition:.35s ease;
    border-radius:4px;
}

.hero-btn-primary{
    background:#ffea63;
    color:#111 !important;
}

.hero-btn-primary:hover{
    background:#ffd93b;
    color:#111 !important;
}

.hero-btn-secondary{
    background:transparent;
    color:#fff !important;
    border:1px solid rgba(255,255,255,.45);
}

.hero-btn-secondary:hover{
    background:#fff;
    color:#111 !important;
}

@media (max-width:991px){

.hero-eyebrow{
    font-size:13px;
    letter-spacing:2px;
}

.hero-eyebrow .line{
    width:30px;
}

.industry-title{
    font-size:62px;
    line-height:1;
}

.industry-title .line2{
    margin-top:-15px;
}

.industry-desc{
    width:100%;
    font-size:18px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
}



}

@media (max-width:576px){

.industry-title{
    font-size:48px;
}

.industry-title .line2{
    margin-top:-8px;
}

.industry-desc{
    font-size:16px;
}

.hero-buttons{
    margin-top:30px;
}

}

/*==================================================
            FORMULATION BENCH
==================================================*/

.formulation-bench{
    padding:100px 0;
    background:#f7f5f1;
}

.formulation-bench .row{
    --bs-gutter-x:28px;
    --bs-gutter-y:28px;
}

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

.bench-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 8px 24px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    width:100%;
    height:100%;

    transition:.35s ease;
}

.bench-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.14);
}

/*==================================================
TOP IMAGE
==================================================*/

.bench-top{
    position:relative;
    height:170px;
    overflow:hidden;
    flex-shrink:0;
}

/*==================================================
BACKGROUND IMAGES
==================================================*/

.bench-bg1{
    background:#183c53;
    background-image:
    repeating-linear-gradient(
        60deg,
        rgba(80,170,180,.25) 0,
        rgba(80,170,180,.25) 2px,
        transparent 2px,
        transparent 28px
    ),
    repeating-linear-gradient(
        -60deg,
        rgba(80,170,180,.25) 0,
        rgba(80,170,180,.25) 2px,
        transparent 2px,
        transparent 28px
    );
}
.bench-bg2{
    background:#233d55;
    position:relative;
}

.bench-bg2::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 75%, rgba(255,255,255,.45) 2px, transparent 5px),
    radial-gradient(circle at 35% 70%, rgba(255,255,255,.35) 4px, transparent 8px),
    radial-gradient(circle at 52% 60%, rgba(255,255,255,.40) 6px, transparent 10px),
    radial-gradient(circle at 78% 35%, rgba(255,255,255,.22) 8px, transparent 14px),
    radial-gradient(circle at 65% 80%, rgba(255,255,255,.25) 4px, transparent 8px);
}
.bench-bg3{
    background:#383d47;
    position:relative;
}

.bench-bg3::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.9), transparent 16px),
    radial-gradient(circle at 35% 55%, rgba(255,255,255,.8), transparent 20px),
    radial-gradient(circle at 55% 35%, rgba(255,255,255,.85), transparent 18px),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,.8), transparent 14px),
    radial-gradient(circle at 90% 35%, rgba(255,255,255,.9), transparent 12px);
}

.bench-bg4{
    background:#4b3927;
    position:relative;
}

.bench-bg4::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(circle at 20% 35%, #d69b52, transparent 12px),
    radial-gradient(circle at 40% 60%, #c98b43, transparent 14px),
    radial-gradient(circle at 60% 30%, #dca15b, transparent 10px),
    radial-gradient(circle at 75% 65%, #c68539, transparent 12px),
    radial-gradient(circle at 90% 25%, #e1a85d, transparent 10px);
}

/* ==========================
   CA-05 | Buff TiO2 Powder
========================== */

.bench-bg5{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#d9d4c8 0%, #c9c3b6 50%, #b8b0a1 100%);
}

.bench-bg5::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 12% 18%, #f6f3eb 0 8px, transparent 9px),
    radial-gradient(circle at 26% 55%, #ede7da 0 12px, transparent 13px),
    radial-gradient(circle at 48% 28%, #faf8f2 0 9px, transparent 10px),
    radial-gradient(circle at 66% 62%, #e9e2d4 0 14px, transparent 15px),
    radial-gradient(circle at 82% 34%, #f5f2ea 0 11px, transparent 12px),
    radial-gradient(circle at 78% 78%, #ece5d8 0 16px, transparent 17px),
    radial-gradient(circle at 38% 82%, #f8f5ee 0 10px, transparent 11px);

    opacity:.95;
}

.bench-bg5::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
    background-size:18px 18px;
    opacity:.35;
}

.bench-bg6{
    background:#1f3652;
    position:relative;
}

.bench-bg6::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.18) 0 10px, transparent 11px),
    radial-gradient(circle at 35% 40%, rgba(255,255,255,.14) 0 20px, transparent 21px),
    radial-gradient(circle at 62% 58%, rgba(255,255,255,.18) 0 30px, transparent 31px),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.15) 0 42px, transparent 43px);
}

.bench-bg6::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(135deg,
    transparent 0%,
    rgba(255,255,255,.18) 50%,
    transparent 100%);

    opacity:.6;
}

.bench-bg7{
    background:#43464d;
    position:relative;
}

.bench-bg7::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        35deg,
        rgba(255,255,255,.55) 0 2px,
        transparent 2px 26px
    ),
    repeating-linear-gradient(
        -35deg,
        rgba(255,255,255,.25) 0 2px,
        transparent 2px 34px
    );

    opacity:.65;
}

.bench-bg8{
    background:#31435d;
    position:relative;
}

.bench-bg8::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,.35) 0 10px, transparent 11px),
    radial-gradient(circle at 45% 25%, rgba(255,255,255,.25) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.35) 0 11px, transparent 12px),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.25) 0 8px, transparent 9px),
    linear-gradient(
        45deg,
        transparent 48%,
        rgba(255,255,255,.18) 49%,
        rgba(255,255,255,.18) 51%,
        transparent 52%
    ),
    linear-gradient(
        -45deg,
        transparent 48%,
        rgba(255,255,255,.18) 49%,
        rgba(255,255,255,.18) 51%,
        transparent 52%
    );
}

/* ==========================================================
   CA-09 | Levelling Agents for Epoxy Floor
========================================================== */

.bench-bg9{
    background:#20415c;
    position:relative;
    overflow:hidden;
}

.bench-bg9::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 70%, rgba(255,255,255,.20) 0 12px, transparent 13px),
        radial-gradient(circle at 38% 40%, rgba(255,255,255,.16) 0 26px, transparent 27px),
        radial-gradient(circle at 68% 58%, rgba(255,255,255,.18) 0 36px, transparent 37px),
        radial-gradient(circle at 88% 25%, rgba(255,255,255,.15) 0 22px, transparent 23px);
}

.bench-bg9::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg,
        transparent 15%,
        rgba(255,255,255,.20) 50%,
        transparent 85%);
}



/* ==========================================================
   CA-10 | Gloss Enhancer
========================================================== */

.bench-bg10{
    background:linear-gradient(135deg,#151515,#3d3d3d);
    position:relative;
    overflow:hidden;
}

.bench-bg10::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(115deg,
        transparent 15%,
        rgba(255,255,255,.55) 48%,
        rgba(255,255,255,.12) 52%,
        transparent 80%);
}

.bench-bg10::after{
    content:"";
    position:absolute;
    left:-20%;
    top:55%;
    width:140%;
    height:2px;
    background:rgba(255,255,255,.35);
    transform:rotate(-8deg);
}

/* ==========================================================
   CA-11 | Defoamers
========================================================== */

.bench-bg11{
    background:#29435d;
    position:relative;
    overflow:hidden;
}

.bench-bg11::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 70%, rgba(255,255,255,.45) 0 5px, transparent 6px),
        radial-gradient(circle at 28% 62%, rgba(255,255,255,.35) 0 10px, transparent 11px),
        radial-gradient(circle at 46% 48%, rgba(255,255,255,.40) 0 14px, transparent 15px),
        radial-gradient(circle at 68% 32%, rgba(255,255,255,.32) 0 18px, transparent 19px),
        radial-gradient(circle at 84% 58%, rgba(255,255,255,.42) 0 9px, transparent 10px),
        radial-gradient(circle at 72% 82%, rgba(255,255,255,.30) 0 6px, transparent 7px);
}
/*==================================================
BOTTOM OVERLAY
==================================================*/

.bench-top:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:80px;
    background:linear-gradient(to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,0));
}

/*==================================================
CI LABEL
==================================================*/

.bench-code{

    position:absolute;

    left:18px;

    bottom:18px;

    z-index:2;

    background:#263241;

    color:#fff;

    font-size:11px;

    font-weight:700;

    padding:0px 5px;

    border-radius:4px;

}

/*==================================================
WB / SB
==================================================*/

.bench-tags{

    position:absolute;

    right:18px;

    bottom:18px;

    display:flex;

    gap:8px;

    z-index:2;

}

.bench-tags span{

    width:30px;

    height:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:4px;

    color:#fff;

    font-size:10px;

    font-weight:700;

}

.wb{
    background:#2f947c;
}

.sb{
    background:#cf7820;
}

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

.bench-body{

    padding:24px;

    display:flex;

    flex-direction:column;

    flex:1;

}

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

.bench-cat{

    color:#ca6f29;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:2px;

   

}

/*==================================================
TITLE
==================================================*/

.bench-body h4{

    font-size:15px;

    font-weight:700;

    line-height:1.35;

    color:#0f2342;

    margin-bottom:2px;

    

}

/*==================================================
DESCRIPTION
==================================================*/

.bench-body p{

    margin:0;

    color:#5e6877;

    font-size:17px;


    line-height:1.8;

    flex:1;

}

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

@media(max-width:1199px){

.bench-top{

height:155px;

}

.bench-body{

padding:22px;

}

.bench-body h4{

font-size:19px;

min-height:54px;

}

.bench-body p{

font-size:16px;

}

}

/*==================================================
991
==================================================*/

@media(max-width:991px){

.formulation-bench{

padding:80px 0;

}

.bench-top{

height:160px;

}

}

/*==================================================
767
==================================================*/

@media(max-width:767px){

.bench-top{

height:170px;

}

.bench-body{

padding:20px;

}

.bench-cat{

font-size:12px;

}

.bench-body h4{

font-size:18px;

min-height:auto;

}

.bench-body p{

font-size:15px;

line-height:1.7;

}

}

/*==================================================
575
==================================================*/

@media(max-width:575px){

.formulation-bench{

padding:60px 0;

}

.bench-top{

height:150px;

}

.bench-code{

font-size:12px;

padding:6px 10px;

}

.bench-tags span{

width:34px;

height:32px;

font-size:12px;

}

.bench-body{

padding:18px;

}

.bench-cat{

font-size:11px;

letter-spacing:1.2px;

min-height:auto;

}

.bench-body h4{

font-size:17px;

}

.bench-body p{

font-size:14px;

}

}

/*==================================================
        WHERE IT'S USED
==================================================*/

.industry-use-section{
    padding:100px 0;
    background:#f7f5f1;
}

/* Heading */

.industry-mini-title{
    color:#c87a24;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.industry-main-title{
    font-size:36px;
    font-weight:800;
    color:#12233d;
    line-height:1.15;
    margin-bottom:10px;
}

/* Cards */

.industry-use-card{
    background:#fff;
    border:1px solid #d8d8d8;
    min-height:160px;
    padding:38px 30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.35s ease;
}

.industry-use-card:hover{
    background:#fff;
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    z-index:5;
    position:relative;
}

.industry-number{
    font-size:22px;
    font-weight:800;
    color:#69798e;
    line-height:1;
}

.industry-use-card h4{
    margin:0;
    color:#12233d;
    font-size:24px;
    line-height:1.25;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

.industry-use-section{
    padding:80px 0;
}

.industry-main-title{
    font-size:42px;
}

.industry-use-card{
    min-height:220px;
}

.industry-use-card h4{
    font-size:28px;
}

}

@media(max-width:767px){

.industry-main-title{
    font-size:34px;
}

.industry-use-card{
    min-height:180px;
    padding:28px;
}

.industry-number{
    font-size:26px;
}

.industry-use-card h4{
    font-size:24px;
}

}

@media(max-width:575px){

.industry-use-section{
    padding:60px 0;
}

.industry-mini-title{
    font-size:13px;
    letter-spacing:3px;
}

.industry-main-title{
    font-size:30px;
}

.industry-use-card{
    min-height:160px;
    padding:24px;
}

.industry-number{
    font-size:22px;
}

.industry-use-card h4{
    font-size:20px;
}

}

.industry-quote{
    background:#f4f1ea;
    border-left:4px solid #0b9b93;
    padding:30px 35px;
    margin:40px 0;
}

.industry-quote p{
    margin:0;
    color:#5d6471;
    font-size:15px;
    line-height:1.8;
    font-weight:300;
    font-family:'Montserrat',sans-serif;
}

/*===================================================
APPLICATION TABLE
===================================================*/

.application-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.application-table thead th{
    background:#173f58;
    color:#fff;
    font-size:17px;
    font-weight:700;
    padding:22px 20px;
    text-transform:uppercase;
    letter-spacing:.5px;
    border:none;
}

.application-table tbody td{
    padding:18px 20px;
    font-size:15px;
    line-height:1.8;
    color:#4d5562;
    border-bottom:1px solid #ececec;
    vertical-align:top;
}

.application-table tbody tr:nth-child(even){
    background:#fafafa;
}

.application-table tbody tr:hover{
    background:#eef7f8;
    transition:.3s;
}

.application-table tbody td:first-child{
    font-weight:700;
    color:#173f58;
    width:24%;
}

.application-table tbody td:nth-child(2){
    width:28%;
    color:#0d7d75;
    font-weight:600;
}

.application-table tbody td:last-child{
    width:48%;
}

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


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

@media (max-width:991px){

.application-table{
    min-width:900px;
}

.table-responsive{
    overflow-x:auto;
    border-radius:14px;
}

}

@media (max-width:768px){

.application-table thead th{
    font-size:15px;
    padding:16px;
}

.application-table tbody td{
    font-size:14px;
    padding:15px;
}

}

.bench-apps{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:18px;
}

.bench-apps span{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:26px;
    padding:0 5px;

    background:#f4f1ea;
    border:1px solid #ddd5c8;
    border-radius:5px;

    color:#555;
    font-size:10px;
    font-weight:600;
    line-height:1.2;
    white-space:nowrap;
}

.application-table .table-group td{
    background:#d33c7c;
    color:#fff;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:14px 20px;
}

.app-tags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:4px 10px;

    background:linear-gradient(180deg,#eef7fd,#ddeefb);
    border:1px solid #b7d1e8;
    border-radius:50px;

    color:#123f67;
    font-size:11px;
    font-weight:700;
    letter-spacing:.2px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9),
        0 2px 5px rgba(0,0,0,.05);

    transition:.3s ease;
}

.app-tags span:hover{
    transform:translateY(-4px);
    background:#0b7d75;
    border-color:#0b7d75;
    color:#fff;
}

.marine-solutions-section{
    padding:90px 0;
    background:#f7fafc;
}

.marine-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.marine-item{
    display:flex;
    align-items:flex-start;
    gap:28px;

    background:#fff;
    border-radius:18px;
    padding:35px;

    border:1px solid #e7eef5;

    transition:.35s;
}

.marine-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.marine-no{

    width:72px;
    height:72px;

    min-width:72px;

    border-radius:50%;

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

    background:linear-gradient(135deg,#0f4c81,#1b8cd8);

    color:#fff;
    font-size:24px;
    font-weight:700;
}

.marine-content h4{

    margin-bottom:14px;

    font-weight:700;

    color:#0f2742;
}

.marine-content p{

    margin:0;

    line-height:1.9;

    color:#5f6f82;
}

@media(max-width:991px){

.marine-grid{

grid-template-columns:1fr;

}

}

.target-sector-section{
    padding:90px 0;
    background:#f7f9fc;
}

.industry-target-card{

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

    gap:22px;

    padding:18px 15px;

    background:#fff;

    border:1px solid #e3e8ef;

    border-radius:10px;

    height:100%;

    transition:.3s;
}

.industry-target-card:hover{

    border-color:#1e88d4;

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.target-no{

    min-width:48px;

    font-size:22px;

    font-weight:700;

    color:#0f6fb5;

    line-height:1;
}

.target-content{

    flex:1;
}

.target-content h5{

    margin-bottom:8px;

    font-size:20px;

    font-weight:700;

    color:#10243d;
}

.target-content p{

    margin:0;

    color:#6b7785;

    font-size:16px;

    line-height:1.8;
}

@media(max-width:991px){

.target-content h5{

font-size:18px;

}

}

.target-industries{
    padding:90px 0;
    background:#F5F6EC;
}

.industry-tags{
    display:flex;
    flex-wrap:wrap;
    gap:18px 20px;
    margin-top:45px;
}

.industry-tag{

    display:flex;
    align-items:center;

    background:#fff;

    min-height:38px;
    padding:0 28px;

    border-radius:40px;

    font-size:15px;
    font-weight:600;
    color:#1c1c1c;

    border:1px solid #ececec;

    box-shadow:0 8px 24px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;
    overflow:hidden;
}

.industry-tag::before{

    content:'';

    position:absolute;

    left:0;
    top:0;
    bottom:0;

    width:6px;

    background:#2E7754;

}

.industry-tag:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

    background:#2E7754;
    color:#fff;

}

.industry-tag:hover::before{

    background:#FFD55C;

}

.technical-detail-section{
    padding:90px 0;
    background:#efede6;
}

.tech-card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    height:100%;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.tech-card h4{
    font-size:20px;
    font-weight:700;
    color:#072847;
    margin-bottom:30px;
}

.tech-table{
    width:100%;
    border-collapse:collapse;
}

.tech-table tr:not(:last-child){
    border-bottom:1px solid #e6e6e6;
}

.tech-table td{
    padding:16px 0;
    vertical-align:top;
}

.tech-table td:first-child{
    width:45%;
    font-weight:700;
    color:#072847;
    font-size:15px;
    line-height:1.25;
    padding-right:20px;
}

.tech-table td:last-child{
    color:#666;
    font-size:15px;
    line-height:1.35;
}

@media(max-width:991px){

    .tech-card{
        margin-bottom:25px;
    }

    .tech-card h4{
        font-size:20px;
    }

    .tech-table td:first-child{
        width:42%;
        font-size:14px;
    }

    .tech-table td:last-child{
        font-size:14px;
    }

}

.operational-table{
    font-size:14px;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:0;
}

.operational-table thead th{
    background:#1d3557;
    color:#fff;
    border:none;
    font-weight:600;
    padding:8px 10px;
}

.operational-table td{
    padding:8px 10px;
    vertical-align:top;
}

.operational-table tbody tr:nth-child(even){
    background:#f8fafc;
}

.operational-table tbody tr:hover{
    background:#eef5ff;
}

.tech-desk-section{
    padding:70px 0;
    background:#f7f9fc;
}

.tech-desk-box{
    background:#fff;
    border:1px solid #dfe6ef;
    border-left:5px solid #11d4c3;
    border-radius:18px;
    padding:55px;
    box-shadow:0 8px 35px rgba(0,0,0,.05);
    position:relative;
}

.tech-mini-title{
    font-size:14px;
    font-weight:700;
    letter-spacing:6px;
    color:#00a8ff;
    text-transform:uppercase;
    margin-bottom:24px;
}

.tech-title{
    font-size:46px;
    font-weight:900;
    line-height:1.08;
    color:#151d33;
    margin-bottom:32px;
    font-family:'Barlow Condensed',sans-serif;
}

.tech-title span{
    color:#14b8f5;
}

.tech-desc{
    font-size:17px;
    line-height:2;
    color:#42526e;
    text-align:justify;
    margin:0;
}

@media (max-width:991px){

.tech-desk-box{
    padding:35px;
}

.tech-title{
    font-size:42px;
}

.tech-desc{
    font-size:18px;
    line-height:1.9;
}

}

@media (max-width:576px){

.tech-desk-box{
    padding:25px;
}

.tech-mini-title{
    letter-spacing:3px;
    font-size:12px;
}

.tech-title{
    font-size:32px;
}

.tech-desc{
    font-size:16px;
    line-height:1.8;
}

}

.hero-pills{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.pill{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    border-radius:50px;
    font-weight:600;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.pill:hover{
    transform:translateY(-5px);
}

.pill strong{
    font-size:20px;
    margin-right:3px;
}

.pill i{
    font-size:18px;
}

.pill-cyan{
    background:#06b6d4;
}

.pill-orange{
    background:#f97316;
}

.pill-green{
    background:#10b981;
}

.pill-red{
    background:#ef4444;
}

.timer-pill{
    animation:pulse 1.8s infinite;
}

#countdown{
    font-weight:700;
    margin-left:8px;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }

}


/*=========================================
WHY WORK HERE
=========================================*/

.benefits-section{
    padding:90px 0;
    background:#f8f5ee;
}

.benefits-section .row{
    margin-top:40px;
}

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

.benefit-card{

    background:#fff;
    border:1px solid #d9d9d9;
    padding:35px 30px;
    height:100%;
    transition:.3s;
    position:relative;

}

.benefit-card:hover{

    border-color:#c58a22;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transform:translateY(-5px);

}

/*=========================================
NUMBER
=========================================*/

.benefit-number{

    color:#c58a22;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
    display:block;

}

/*=========================================
TITLE
=========================================*/

.benefit-card h4{

    font-size:20px;
    font-weight:800;
    color:#12284c;
    margin-bottom:18px;
    line-height:1.3;

}

/*=========================================
TEXT
=========================================*/

.benefit-card p{

    font-size:17px;
    color:#223b5f;
    line-height:1.7;
    margin:0;

}

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

@media(max-width:991px){

    .benefit-card{

        padding:30px 25px;

    }

}

@media(max-width:576px){

    .benefit-card{

        padding:25px 20px;

    }

    .benefit-card h4{

        font-size:18px;

    }

    .benefit-card p{

        font-size:15px;

    }

}

/*==================================================
APPLICATION SECTION
==================================================*/

.application-section{
    padding:100px 0;
    background:#f8fafc;
}

/*==================================================
LEFT PANEL
==================================================*/

.application-info{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:35px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.application-info h3{

    font-size:28px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;

}

.application-info p{

    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;

}

.application-list{

    list-style:none;
    padding:0;
    margin:0;

}

.application-list li{

    display:flex;
    gap:15px;
    margin-bottom:20px;
    color:#334155;
    line-height:1.7;

}

.application-list i{

    color:#2563eb;
    margin-top:4px;

}

/*==================================================
FORM
==================================================*/

.application-form{

    background:#fff;
    border-radius:20px;
    border:1px solid #e5e7eb;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.form-label{

    font-weight:600;
    color:#0f172a;
    margin-bottom:10px;

}

.form-control,
.form-select{

    border:1px solid #dbe3ec;
    border-radius:12px;
    min-height:52px;
    padding:12px 18px;
    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 .15rem rgba(37,99,235,.15);

}

textarea.form-control{

    min-height:140px;
    resize:vertical;

}

/*==================================================
UPLOAD
==================================================*/

.upload-title{

    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;

}

.upload-box{

    border:1px dashed #cbd5e1;
    border-radius:16px;
    padding:22px;
    transition:.3s;
    background:#fafafa;

}

.upload-box:hover{

    border-color:#2563eb;
    background:#f8fbff;

}

.upload-label{

    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:15px;

}

.upload-label i{

    width:50px;
    height:50px;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;

}

.upload-label strong{

    display:block;
    color:#0f172a;
    margin-bottom:5px;

}

.upload-label small{

    color:#64748b;

}

/*==================================================
BUTTON
==================================================*/

.career-submit-btn{

    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:16px 40px;
    font-size:17px;
    font-weight:700;
    transition:.35s;

}

.career-submit-btn:hover{

    background:#1d4ed8;
    transform:translateY(-3px);

}

/*==================================================
NOTE
==================================================*/

.application-note{

    margin-top:15px;
    color:#64748b;
    font-size:14px;
    line-height:1.8;

}

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

@media(max-width:991px){

    .application-section{

        padding:70px 0;

    }

    .application-info{

        margin-bottom:30px;

    }

    .application-form{

        padding:30px;

    }

}

@media(max-width:576px){

    .application-form{

        padding:22px;

    }

    .application-info{

        padding:25px;

    }

    .application-info h3{

        font-size:24px;

    }

    .career-submit-btn{

        width:100%;

    }

}



/* =========================================
   OVERVIEW SECTION
========================================= */

.overview-section {
    padding: 80px 0;
}

.overview-column,
.needs-column {
    height: 100%;
}


/* =========================================
   LABEL
========================================= */

.overview-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 25px;
}


/* =========================================
   LEFT HEADING
========================================= */

.overview-column h3 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #071a2b;
    margin: 0 0 32px;
}


/* =========================================
   DESCRIPTION
========================================= */

.overview-text {
    font-size: 20px;
    line-height: 1.75;
    color: #666;
    margin: 0 0 35px;
    max-width: 780px;
}


/* =========================================
   QUOTE BOX
========================================= */

.overview-quote {
    background: #f4f1eb;
    border-left: 4px solid #c76b25;
    padding: 28px 30px;
    margin-top: 25px;
}

.overview-quote p {
    font-size: 18px;
    line-height: 1.7;
    color: #53657a;
    margin: 0;
}

.overview-quote strong {
    color: #526b88;
    font-weight: 700;
}


/* =========================================
   RIGHT SIDE
========================================= */

.needs-column {
    padding-left: 35px;
    border-left: 1px solid #e2ded8;
}

.needs-list {
    margin-top: 35px;
}


/* =========================================
   NEED ITEM
========================================= */

.needs-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 27px;
}

.needs-item:last-child {
    margin-bottom: 0;
}

.needs-dash {
    color: #c40000;
    font-size: 24px;
    line-height: 1.4;
    margin-right: 10px;
    flex-shrink: 0;
}

.needs-item p {
    margin: 0;
    font-size: 19px;
    line-height: 1.65;
    color: #666;
}

.needs-item strong {
    color: #071a2b;
    font-weight: 700;
}


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

@media (max-width: 991px) {

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

    .needs-column {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #e2ded8;
        padding-top: 50px;
    }

}


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

@media (max-width: 767px) {

    .overview-section {
        padding: 45px 0;
    }

    .overview-column h3 {
        font-size: 30px;
    }

    .overview-text {
        font-size: 17px;
        line-height: 1.65;
    }

    .overview-quote {
        padding: 22px;
    }

    .overview-quote p {
        font-size: 16px;
        line-height: 1.6;
    }

    .needs-item p {
        font-size: 16px;
        line-height: 1.6;
    }

}

/* =========================================
   INDUSTRY SNAPSHOT
========================================= */

.industry-snapshot {
    padding: 80px 0;
}


/* =========================================
   PRODUCT MAIN CARD
========================================= */

.snapshot-product {
    background: #f7f5f0;
    border: 1px solid #ddd8d0;
    padding: 45px;
}


/* =========================================
   PRODUCT HEADER
========================================= */

.snapshot-product-header {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ddd8d0;
}

.snapshot-product-number {
    font-size: 28px;
    font-weight: 700;
    color: #c76b25;
    line-height: 1;
    padding-top: 4px;
}

.snapshot-product-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    margin-bottom: 10px;
}

.snapshot-product-header h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    color: #071a2b;
    font-weight: 700;
}


/* =========================================
   PRODUCT DESCRIPTION
========================================= */

.product-description {
    font-size: 19px;
    line-height: 1.75;
    color: #5d5d5d;
    margin-bottom: 24px;
}


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

.product-specifications {
    margin-top: 35px;
    border-top: 1px solid #d8d3cc;
}

.spec-row {
    display: grid;
    grid-template-columns: 35% 65%;
    padding: 15px 0;
    border-bottom: 1px solid #d8d3cc;
}

.spec-label {
    color: #071a2b;
    font-weight: 600;
    font-size: 16px;
}

.spec-value {
    color: #555;
    font-size: 16px;
}

.spec-value strong {
    color: #071a2b;
}


/* =========================================
   PRODUCT PHOTO
========================================= */

.product-photo {
    background: #fff;
    border: 1px solid #ddd8d0;
    padding: 20px;
    text-align: center;
}

.product-photo img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
}

.photo-caption {
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}


/* =========================================
   BENEFITS
========================================= */

.snapshot-benefit {
    height: 100%;
    background: #fff;
    border: 1px solid #ddd8d0;
    padding: 25px;
    transition: all 0.3s ease;
}

.snapshot-benefit:hover {
    transform: translateY(-4px);
}

.benefit-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #c76b25;
    margin-bottom: 15px;
}

.snapshot-benefit h5 {
    font-size: 18px;
    line-height: 1.35;
    color: #071a2b;
    margin-bottom: 10px;
}

.snapshot-benefit p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* =========================================
   APPLICATION TAGS
========================================= */

.snapshot-applications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #ddd8d0;
}

.snapshot-applications span {
    display: inline-block;
    padding: 9px 16px;
    border: 1px solid #cfc9c0;
    background: #fff;
    color: #071a2b;
    font-size: 14px;
    font-weight: 600;
}


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

@media (max-width: 991px) {

    .snapshot-product {
        padding: 30px;
    }

    .snapshot-product-header h3 {
        font-size: 30px;
    }

}

@media (max-width: 767px) {

    .industry-snapshot {
        padding: 50px 0;
    }

    .snapshot-product {
        padding: 22px;
    }

    .snapshot-product-header {
        gap: 15px;
    }

    .snapshot-product-number {
        font-size: 22px;
    }

    .snapshot-product-header h3 {
        font-size: 25px;
    }

    .product-description {
        font-size: 17px;
        line-height: 1.65;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .product-photo {
        margin-top: 10px;
    }

    .snapshot-benefit {
        padding: 20px;
    }

    .snapshot-applications {
        gap: 8px;
    }

}

.matrix-together {
    padding: 90px 0;
    background: #f7f5f0;
}


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

.matrix-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #071a2b;
    margin: 0 0 22px;
}

.matrix-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    max-width: 850px;
}


/* =========================================
   FLOW
========================================= */

.matrix-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    margin-top: 55px;
}


/* =========================================
   ROLE CARD
========================================= */

.matrix-role {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid #ddd8d0;
    padding: 35px 35px 35px 80px;
    min-height: 210px;
    display: flex;
    align-items: center;
}

.matrix-role-left {
    border-top: 4px solid #c76b25;
}

.matrix-role-right {
    border-top: 4px solid #071a2b;
}


/* =========================================
   NUMBER
========================================= */

.matrix-role-number {
    position: absolute;
    left: 28px;
    top: 30px;

    font-size: 16px;
    font-weight: 700;
    color: #c76b25;
    letter-spacing: 1px;
}


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

.matrix-role-content h3 {
    font-size: 27px;
    line-height: 1.3;
    color: #071a2b;
    font-weight: 700;
    margin: 0 0 18px;
}

.matrix-role-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* =========================================
   PLUS
========================================= */

.matrix-plus {
    width: 55px;
    height: 55px;
    min-width: 55px;

    align-self: center;

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

    border: 1px solid #cfc9c0;
    background: #fff;

    font-size: 28px;
    font-weight: 400;
    color: #c76b25;
}


/* =========================================
   RESULT
========================================= */

.matrix-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;

    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #071a2b;
}

.matrix-result-line {
    width: 90px;
    height: 1px;
    background: #cfc9c0;
}


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

@media (max-width: 991px) {

    .matrix-flow {
        gap: 15px;
    }

    .matrix-role {
        padding: 30px 25px 30px 65px;
    }

    .matrix-role-content h3 {
        font-size: 23px;
    }

    .matrix-role-content p {
        font-size: 17px;
    }

}


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

@media (max-width: 767px) {

    .matrix-together {
        padding: 55px 0;
    }

    .matrix-title {
        font-size: 32px;
    }

    .matrix-intro {
        font-size: 17px;
    }

    .matrix-flow {
        flex-direction: column;
        gap: 18px;
        margin-top: 35px;
    }

    .matrix-role {
        width: 100%;
        min-height: auto;
        padding: 28px 25px 28px 65px;
    }

    .matrix-plus {
        align-self: center;
    }

    .matrix-result {
        margin-top: 35px;
        font-size: 16px;
    }

}

/* =========================================
   REGULATORY & HANDLING
========================================= */

.regulatory-section {
    padding: 80px 0;
}


/* =========================================
   REGULATORY CARD
========================================= */

.regulatory-card {
    height: 100%;
    min-height: 310px;
    background: #f7f5f0;
    border: 1px solid #ddd8d0;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.regulatory-card:hover {
    transform: translateY(-5px);
    border-color: #cfc8bd;
}


/* =========================================
   NUMBER
========================================= */

.regulatory-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c76b25;
    margin-bottom: 28px;
}


/* =========================================
   TITLE
========================================= */

.regulatory-card h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #071a2b;
    margin: 0 0 20px;
}


/* =========================================
   DESCRIPTION
========================================= */

.regulatory-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* =========================================
   TOP ACCENT
========================================= */

.regulatory-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c76b25;
}


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

@media (max-width: 767px) {

    .regulatory-section {
        padding: 55px 0;
    }

    .regulatory-card {
        min-height: auto;
        padding: 28px;
    }

    .regulatory-card h3 {
        font-size: 21px;
    }

    .regulatory-card p {
        font-size: 16px;
        line-height: 1.6;
    }

}

/* =========================================
   HERO SECTION
========================================= */

.section-dark.jarallax {
    min-height: 750px;
}


/* Move hero content above the bottom strip */

.section-dark.jarallax > .abs.w-80.bottom-10 {
    bottom: 125px !important;
}


/* =========================================
   BOTTOM INFORMATION STRIP
========================================= */

.hero-info-strip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;

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

    background: #f5f2ec;
    color: #101820;

    border-top: 1px solid #d8d3ca;
}


/* Each column */

.hero-info-item {
    min-height: 105px;
    padding: 22px 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid #d8d3ca;
}

.hero-info-item:last-child {
    border-right: none;
}


/* Title */

.hero-info-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}


/* Description */

.hero-info-text {
    font-size: 12px;
    line-height: 1.5;

    text-transform: uppercase;
    letter-spacing: 1.2px;

    color: #858585;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .section-dark.jarallax > .abs.w-80.bottom-10 {
        bottom: 135px !important;
    }

}


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

@media (max-width: 991px) {

    .section-dark.jarallax {
        min-height: 850px;
    }

    .section-dark.jarallax > .abs.w-80.bottom-10 {
        position: relative !important;
        bottom: auto !important;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-info-strip {
        position: relative;
        grid-template-columns: 1fr;
    }

    .hero-info-item {
        border-right: none;
        border-bottom: 1px solid #d8d3ca;
        min-height: auto;
    }

    .hero-info-item:last-child {
        border-bottom: none;
    }

}


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

@media (max-width: 575px) {

    .section-dark.jarallax {
        min-height: auto;
    }

    .section-dark.jarallax > .abs.w-80.bottom-10 {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-info-item {
        padding: 18px 22px;
    }

    .hero-info-title {
        font-size: 16px;
    }

    .hero-info-text {
        font-size: 10px;
        letter-spacing: .8px;
    }

}