* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    overflow-x: hidden;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: #263A59;
    color: #fff;
    height: 38px;
    line-height: 38px;
    font-size: 13px;
}

.top-bar p {
    margin: 0;
    letter-spacing: .3px;
}

.social a {
    color: #fff;
    margin-left: 15px;
    transition: .3s;
}

.social a:hover {
    color: #1F3A5F;
}

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

header {
    background: #fff;
    padding: 0px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 999;
}

.logo {
    max-height: 121px;
}

/* ================= MENU ================= */

.navbar-nav {
    background: #666;
    border-radius: 3px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .35s;
}

.navbar-nav .nav-link:hover {
    background: #1F3A5F;
    color: #fff;
}

.navbar-nav .nav-link.active {
    background: #1F3A5F;
    color: #fff;
}


/* ================= DROPDOWN ================= */

.dropdown-menu {

    display: block;
    opacity: 0;
    visibility: hidden;

    margin-top: 20px;

    transform: translateY(20px);

    transition: .35s;

    border: none;
    border-radius: 4px;

    min-width: 220px;

    padding: 10px 0;

    background: #666;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

}

.dropdown:hover .dropdown-menu {

    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateY(0);

}

.dropdown-item {

    color: #fff;
    padding: 12px 20px;
    transition: .3s;

}

.dropdown-item:hover {

    background: #1F3A5F;
    color: #fff;
    padding-left: 30px;

}

/* Search */

.search {

    width: 60px;
    text-align: center;

}

.search:hover {

    background: #1F3A5F;

}

/* Sticky */

header.sticky {

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    animation: slideDown .5s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

}

@keyframes slideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}

/* Mobile */

@media (max-width:991px) {

    .dropdown-menu {
        display: none !important;
        opacity: 1;
        visibility: visible;
        position: static;
        transform: none;
        margin: 0;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu.show {
        display: block !important;
    }


    header {
        padding: 10px 0;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        height: 62px;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-top: -12%;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 15px;
    }

    .navbar-nav {
        width: 100%;
    }

}
/* ==========================================================================
   SHIV FERRO CAST - CORPORATE MATRIX FOOTER
   ========================================================================== */

.sfc-footer {
    background: #090c10; /* Solid Deep Premium Industrial Black */
    padding: 80px 0 0 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 2px solid #1b448a; /* Brand Blue Top Border Bar */
    color: #f0f2f5;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.sfc-footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Four-Column Layout System */
.sfc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.sfc-footer-col {
    display: flex;
    flex-direction: column;
}

/* Column 1: Brand Info Specifics */
.col-brand .sfc-footer-logo img {
    height: 60px;
    width: auto;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.sfc-brand-desc {
    color: #9aa4b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Social Media Ecosystem Pills */
.sfc-social-pills {
    display: flex;
    gap: 12px;
}

.sfc-social-pills .social-pill {
    width: 38px;
    height: 38px;
    background: #121820;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa4b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sfc-social-pills .social-pill:hover {
    background: #e35e26; /* Brand Orange */
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #e35e26;
    box-shadow: 0 10px 20px rgba(227, 94, 38, 0.2);
}

/* Columns Typography Header Layout */
.sfc-col-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 10px;
}

.sfc-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #e35e26; /* Accent Underline */
}

/* Link Columns Configuration */
.sfc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sfc-footer-links li a {
    color: #9aa4b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.sfc-footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Column 4: Contact & Location Layouts */
.sfc-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.sfc-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sfc-contact-row i {
    font-size: 1rem;
    margin-top: 4px;
}

.icon-orange { color: #e35e26; }
.icon-blue { color: #1b448a; }

.sfc-contact-row .row-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sfc-contact-row .row-data a {
    color: #9aa4b0;
    text-decoration: none;
    font-size: 0.95rem;
}

.sfc-contact-row .row-data a:hover {
    color: #ffffff;
}

.contact-person {
    font-size: 0.85rem;
    color: #4a4d4e;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.phone-link {
    font-weight: 600;
    color: #ffffff !important;
}

/* Micro Bento-Style Interactive Geo Location Card */
.sfc-geo-card {
    background: #121820;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.sfc-geo-card:hover {
    background: #161d26;
    border-color: rgba(27, 68, 138, 0.4);
}

.geo-icon {
    width: 36px;
    height: 36px;
    background: rgba(27, 68, 138, 0.2);
    color: #1b448a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.sfc-geo-card:hover .geo-icon {
    background: #1b448a;
    color: #ffffff;
}

.geo-text {
    display: flex;
    flex-direction: column;
}

.geo-head {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.geo-sub {
    color: #9aa4b0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.geo-arrow {
    position: absolute;
    right: 16px;
    color: #4a4d4e;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sfc-geo-card:hover .geo-arrow {
    transform: translateX(4px);
    color: #e35e26;
}

/* Bottom Technical Copyright Bar */
.sfc-footer-base {
    background: #06080b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0;
}

.sfc-base-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sfc-footer-base p {
    margin: 0;
    font-size: 0.85rem;
    color: #4a4d4e;
}

.sfc-footer-base p strong {
    color: #9aa4b0;
}

.sfc-base-policies {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sfc-base-policies a {
    color: #4a4d4e;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sfc-base-policies a:hover {
    color: #9aa4b0;
}

.policy-sep {
    color: #121820;
    font-size: 0.85rem;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVE LAYER GRAPHICS 
   ========================================================================== */

@media (max-width: 1024px) {
    .sfc-footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Clean Balanced Layout on Tablets */
        gap: 40px;
    }
}

@media (max-width: 650px) {
    .sfc-footer {
        padding: 50px 0 0 0;
    }
    .sfc-footer-grid {
        grid-template-columns: 1fr; /* Completely Stacked Single Column on Mobile screens */
        gap: 35px;
    }
    .sfc-base-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   HORIZONTAL & RESPONSIVE INDUSTRIAL GRADE CHART STYLES
   ========================================================================== */

.grades-table-section {
    padding: 40px 0;
    width: 90%;
    margin: 0 auto;
}

.table-header-block {
    margin-bottom: 20px;
}

.table-header-block h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #E35E26; /* Molten Orange */
    letter-spacing: 1.5px;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.table-header-block h3 {
    font-size: 1.8rem;
    color: #4A4D4E; /* Slate Charcoal */
    margin: 0;
    font-weight: 700;
}

/* Scrollable container for perfect responsive viewports */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(27, 68, 138, 0.15);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: #E35E26 rgba(0, 0, 0, 0.05);
}

.industrial-grades-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9rem;
}

/* Headers matching brand profile blueprints */
.industrial-grades-table th {
    background: #1B448A; /* Dominant Steel Blue */
    color: #ffffff;
    font-weight: 600;
    padding: 14px 16px;
    border-bottom: 3px solid #15356C;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.industrial-grades-table th small {
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 2px;
}

/* Accent Column Header Styles mimicking the Excel sheet colors */
.industrial-grades-table th.col-metric-orange {
    background: #d97441;
    border-bottom: 3px solid #b85726;
}
.industrial-grades-table th.col-metric-green {
    background: #4b8a5f;
    border-bottom: 3px solid #356343;
}
.industrial-grades-table th.col-metric-red {
    background: #b54a4a;
    border-bottom: 3px solid #8f3232;
}

/* Table Body Matrix */
.industrial-grades-table td {
    padding: 12px 14px;
    color: #4A4D4E;
    border-bottom: 1px solid #ededed;
    border-right: 1px solid #ededed;
    white-space: nowrap;
}

.industrial-grades-table td:last-child {
    border-right: none;
}

/* Highlighting India rows standardly */
.industrial-grades-table td.highlight-india {
    font-weight: 700;
    color: #1B448A;
    background: rgba(27, 68, 138, 0.06);
}

/* Tint backgrounds for the structural properties side */
.industrial-grades-table td.bg-orange-light {
    background: rgba(227, 94, 38, 0.06);
    font-weight: 600;
}

.industrial-grades-table td.bg-green-light {
    background: rgba(75, 138, 95, 0.06);
    font-weight: 600;
}

.industrial-grades-table td.bg-red-light {
    background: rgba(181, 74, 74, 0.06);
    font-weight: 600;
}

/* Interactivity element */
.industrial-grades-table tbody tr:hover {
    background: rgba(27, 68, 138, 0.02);
}
/* ==========================================================================
   SHIV FERRO CAST - CORPORATE FACILITIES MATRIX
   ========================================================================== */

:root {
    --sfc-blue: #1B448A;        /* Logo Blue */
    --sfc-orange: #E35E26;      /* Logo Orange */
    --sfc-slate: #4A4D4E;       /* Logo Slate */
    --sfc-dark-bg: #0F1319;     
    --sfc-card-bg: #161D26;     
    --sfc-text-light: #F0F2F5;  
    --sfc-text-muted: #9AA4B0;
}

.sfc-fac-layout {
    /*background: var(--sfc-dark-bg);*/
    padding: 10px 0;
    color: var(--sfc-text-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.sfc-fac-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Intro Section */
.sfc-fac-intro {
    max-width: 850px;
    margin-bottom: 60px;
}

.sfc-fac-intro .sfc-tag {
    color: var(--sfc-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.sfc-fac-intro h2 {
    font-size: 2.5rem;
    color: var(--sfc-dark-bg);
    margin: 0 0 20px 0;
    font-weight: 800;
    line-height: 1.2;
}

.sfc-fac-intro p {
    color: var(--sfc-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Infrastructure Cards Grid */
.sfc-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sfc-shop-card {
    background: var(--sfc-card-bg);
    border: 1px solid rgba(27, 68, 138, 0.15);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sfc-shop-card:hover {
    transform: translateY(-5px);
    border-color: var(--sfc-orange);
    box-shadow: 0 30px 60px rgba(227, 94, 38, 0.1);
}

.sfc-shop-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sfc-shop-icon {
    background: rgba(27, 68, 138, 0.15);
    border: 1px solid rgba(27, 68, 138, 0.3);
    color: var(--sfc-orange);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfc-shop-icon svg {
    width: 22px;
    height: 22px;
}

.sfc-shop-header h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.sfc-shop-desc {
    color: var(--sfc-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

/* Specification Content Lists */
.sfc-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sfc-spec-list li {
    border-left: 2px solid var(--sfc-blue);
    padding-left: 14px;
}

.sfc-spec-list li strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 3px;
}

.sfc-spec-list li span {
    display: block;
    font-size: 0.85rem;
    color: var(--sfc-text-muted);
    line-height: 1.4;
}

/* Machine Shop Tool Badge Cloud */
.sfc-tool-badge-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.sfc-tool-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
}

.sfc-shop-mini-footer {
    font-size: 0.85rem;
    color: var(--sfc-orange);
    font-style: italic;
    margin-top: auto;
    line-height: 1.4;
}

/* Bottom Matrix Section */
.sfc-scope-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #1A222C;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.sfc-scope-content {
    padding: 45px;
}

.sfc-scope-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.sfc-scope-content p {
    color: var(--sfc-text-muted);
    margin: 0 0 25px 0;
    font-size: 0.95rem;
}

.sfc-verticals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sfc-vert-item {
    font-size: 0.9rem;
    color: var(--sfc-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sfc-vert-item::before {
    content: '✓';
    color: var(--sfc-orange);
    font-weight: bold;
}

/* Call to Action Sidebar Box */
.sfc-scope-cta {
    background: linear-gradient(135deg, var(--sfc-blue) 0%, #112d5c 100%);
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sfc-scope-cta h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.sfc-scope-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.sfc-cta-link {
    background: var(--sfc-orange);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s ease;
}

.sfc-cta-link:hover {
    background: #f56d33;
}

/* ==========================================================================
   DYNAMIC MEDIA LAYER RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
    .sfc-shop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sfc-scope-box {
        grid-template-columns: 1fr;
    }
    .sfc-scope-cta {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 600px) {
    .sfc-fac-layout {
        padding: 50px 0;
    }
    .sfc-fac-intro h2 {
        font-size: 1.85rem;
    }
    .sfc-scope-content, .sfc-scope-cta {
        padding: 25px;
    }
    .sfc-verticals-grid {
        grid-template-columns: 1fr;
    }
}

/*======================
  Slider 
===========================*/

.isld-wrap {
    --isld-ink: #15181B;
    --isld-steel: #2A2F35;
    --isld-amber: #1F3A5F;
    --isld-off-white: #F4F1EA;
    --isld-muted: #9AA1A9;

    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--isld-steel);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
    margin: 0 auto;
    font-family: "Source Sans 3", sans-serif;
    isolation: isolate;
    /* keeps internal z-index stacking self-contained */
}

.isld-wrap * {
    box-sizing: border-box;
}

.isld-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s linear;
}

.isld-slide.isld-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.isld-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    filter: grayscale(15%) contrast(1.05);
    transform: scale(1.08);
    transition: transform 6s ease-out;
}

.isld-slide.isld-active img {
    transform: scale(1);
}

/* diagonal industrial wipe — the signature move */
.isld-wipe {
    position: absolute;
    inset: 0;
    background: var(--isld-amber);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    z-index: 5;
    pointer-events: none;
}

.isld-wipe.isld-run {
    animation: isldWipeCut .7s cubic-bezier(.77, 0, .18, 1) forwards;
}

@keyframes isldWipeCut {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    45% {
        clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
        opacity: 1;
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 200% 100%, 100% 100%);
        opacity: 0;
    }
}

.isld-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 12, 14, .92) 0%, rgba(10, 12, 14, .55) 38%, rgba(10, 12, 14, 0) 65%);
    z-index: 3;
}

.isld-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    padding: 56px 64px 52px;
    max-width: 620px;
    color: var(--isld-off-white);
}

.isld-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(14px);
}

.isld-tag::before {
    content: "";
    width: 26px;
    height: 2px;
    background: #fff;
}

.isld-caption h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: .01em;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(18px);
    color: var(--isld-off-white);
}

.isld-caption p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    color: var(--isld-muted);
    max-width: 480px;
    opacity: 0;
    transform: translateY(18px);
}

.isld-slide.isld-active .isld-tag {
    animation: isldRise .6s .25s ease forwards;
}

.isld-slide.isld-active h2 {
    animation: isldRise .6s .4s ease forwards;
}

.isld-slide.isld-active p {
    animation: isldRise .6s .55s ease forwards;
}

@keyframes isldRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.isld-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 22, 25, .55);
    border: 1px solid rgba(244, 241, 234, .18);
    color: var(--isld-off-white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    user-select: none;
}

.isld-arrow:hover {
    background: var(--isld-amber);
    border-color: var(--isld-amber);
    color: var(--isld-ink);
}

.isld-arrow.isld-prev {
    left: 24px;
}

.isld-arrow.isld-next {
    right: 24px;
}

.isld-dots {
    position: absolute;
    right: 64px;
    bottom: 56px;
    z-index: 6;
    display: flex;
    gap: 10px;
}

.isld-dot {
    width: 34px;
    height: 3px;
    background: rgba(244, 241, 234, .28);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.isld-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--isld-amber);
    transform: scaleX(0);
    transform-origin: left;
}

.isld-dot.isld-active::after {
    animation: isldFillDot var(--isld-dur, 6s) linear forwards;
}

@keyframes isldFillDot {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.isld-counter {
    position: absolute;
    top: 32px;
    right: 64px;
    z-index: 6;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: .15em;
    color: var(--isld-muted);
}

.isld-counter span {
    color: var(--isld-off-white);
}

@media (max-width:680px) {
    .isld-wrap {
        height: 520px;
    }

    .isld-caption {
        padding: 32px 28px 40px;
        max-width: 100%;
    }

    .isld-caption h2 {
        font-size: 28px;
    }

    .isld-caption p {
        font-size: 15px;
    }

    .isld-dots {
        right: 28px;
        bottom: 28px;
    }

    .isld-counter {
        right: 28px;
        top: 20px;
    }

    .isld-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion:reduce) {

    .isld-slide,
    .isld-slide img,
    .isld-tag,
    .isld-caption h2,
    .isld-caption p,
    .isld-wipe {
        animation: none !important;
        transition: none !important;
    }
}









/*======================
  About Section  
===========================*/

.cabt-section {
    --cabt-ink: #15181B;
    --cabt-steel: #2A2F35;
    --cabt-amber: #1F3A5F;
    --cabt-off-white: #F4F1EA;
    --cabt-muted: #6B7280;
    --cabt-line: #E4E0D6;

    background: var(--cabt-off-white);
    padding: 90px 6vw;
    font-family: "Source Sans 3", sans-serif;
    color: var(--cabt-ink);
}

.cabt-section * {
    box-sizing: border-box;
}

.cabt-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 64px;
    align-items: start;
}

/* ---------- left column ---------- */
.cabt-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cabt-amber);
    margin-bottom: 20px;
}

.cabt-tag::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--cabt-amber);
}

.cabt-grid h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.12;
    margin: 0 0 24px;
    color: #1F3A5F;
}

.cabt-grid h2 em {
    font-style: normal;
    color: var(--cabt-amber);
}

.cabt-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #3A3F45;
    margin: 0 0 18px;
}

.cabt-lead:last-of-type {
    margin-bottom: 36px;
}

.cabt-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--cabt-ink);
    padding: 16px 30px;
    text-decoration: none;
    border: 1px solid var(--cabt-ink);
    transition: background .2s, color .2s;
}

.cabt-cta:hover {
    background: var(--cabt-amber);
    border-color: var(--cabt-amber);
}

.cabt-cta svg {
    width: 14px;
    height: 14px;
    flex: none;
}

/* ---------- right column: spec plate ---------- */
.cabt-plate {
    background: #fff;
    color: var(--cabt-off-white);
    padding: 44px 40px;
    position: relative;
}

.cabt-plate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cabt-amber);
}

.cabt-plate-head {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cabt-amber);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.cabt-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    margin-bottom: 36px;
}

.cabt-stat-num {
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #1F3A5F;
}

.cabt-stat-num span {
    font-size: 18px;
    color: var(--cabt-amber);
    margin-left: 2px;
}

.cabt-stat-label {
    font-size: 13px;
    color: #000;
    margin-top: 6px;
    line-height: 1.4;
}

.cabt-divider {
    border-top: 1px solid rgb(0 0 0 / 15%);
    margin: 0 0 28px;
}

.cabt-plate-sub {
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cabt-amber);
    margin-bottom: 16px;
}

.cabt-products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.cabt-products li {
    font-size: 14.5px;
    color: #000000;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.cabt-products li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--cabt-amber);
}

/* ---------- responsive ---------- */
@media (max-width:900px) {
    .cabt-section {
        padding: 64px 6vw;
    }

    .cabt-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .cabt-grid h2 {
        font-size: 30px;
    }

    .cabt-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cabt-products {
        grid-template-columns: 1fr;
    }
}








.cpgt-banner {
    --cpgt-ink: #15181B;
    --cpgt-amber: #ffffff;
    --cpgt-off-white: #F4F1EA;
    --cpgt-muted: #B7BBC0;

    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url(img/about.webp);
    font-family: "Source Sans 3", sans-serif;
}

.cpgt-banner * {
    box-sizing: border-box;
}

.cpgt-banner::before {
    /* dark gradient so text always reads cleanly over any photo */
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(100deg, rgba(12, 14, 16, .92) 0%, rgba(12, 14, 16, .78) 45%, rgba(12, 14, 16, .55) 100%); */
    z-index: 1;
}

.cpgt-banner::after {
    /* signature angled amber cut, echoes the slider's wipe motif */
    content: "";
    position: absolute;
    top: 0;
    right: -2%;
    width: 140px;
    height: 100%;
    background: var(--cpgt-amber);
    clip-path: polygon(60% 0, 100% 0, 40% 100%, 0% 100%);
    opacity: .9;
    z-index: 1;
}

.cpgt-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 6vw;
}

.cpgt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cpgt-amber);
    margin-bottom: 16px;
}

.cpgt-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--cpgt-amber);
}

.cpgt-inner h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: var(--cpgt-off-white);
    margin: 0 0 16px;
}

.cpgt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--cpgt-muted);
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpgt-breadcrumb a {
    color: var(--cpgt-muted);
    text-decoration: none;
    transition: color .2s;
}

.cpgt-breadcrumb a:hover {
    color: var(--cpgt-amber);
}

.cpgt-breadcrumb .cpgt-sep {
    color: var(--cpgt-amber);
    font-size: 11px;
}

.cpgt-breadcrumb .cpgt-current {
    color: var(--cpgt-off-white);
    font-weight: 600;
}

@media (max-width:680px) {
    .cpgt-banner {
        width:100%;
        height: 230px;
    }

    .cpgt-inner h1 {
        font-size: 30px;
    }

    .cpgt-banner::after {
        width: 90px;
    }
}





/* =========== Contact Page ===========*/
.map-section {
    padding: 20px 0 50px;
}

.map-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}





:root {
    --orange: #1F3A5F;
    --orange-dark: #e86a1f;
    --orange-light: #fff4ee;
    --orange-mid: #1F3A5F18;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg: #f9f9f7;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --radius-md: 10px;
    --radius-lg: 16px;
    --font: 'Inter', sans-serif;
}

/* ─── Main Layout ────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    margin-top: 48px;
}

@media (max-width: 720px) {
    .grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
}

/* ─── Info Cards ─────────────────────────────── */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s;
}

.info-card:hover {
    box-shadow: 0 4px 20px rgba(255, 122, 41, 0.08);
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-value {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.65;
}

.info-value a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.info-value a:hover {
    text-decoration: underline;
}

/* Map CTA */
.map-cta {
    background: var(--surface);
    border: 1px dashed #1F3A5F40;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.map-cta:hover {
    background: var(--orange-light);
    border-color: var(--orange);
}

.map-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-cta-left svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-cta span {
    font-size: 14px;
    font-weight: 500;
    color: var(--orange);
}

.map-arrow {
    font-size: 18px;
    color: var(--orange);
}

/* ─── Contact Form ───────────────────────────── */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

input,
textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--text-primary);
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

input:focus,
textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 41, 0.12);
    background: #fff;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s, transform 0.1s;
}

.submit-btn:hover {
    background: var(--orange-dark);
}

.submit-btn:active {
    transform: scale(0.985);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Success */
.success-msg {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    background: #eaf8f0;
    border: 1px solid #9fe1cb;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: #0F6E56;
    font-weight: 500;
}

.success-msg svg {
    width: 18px;
    height: 18px;
    stroke: #0F6E56;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Error highlight */
input.error,
textarea.error {
    border-color: #E24B4A;
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.1);
}






/*================= About page  ==================*/

:root {
    --shiv-orange: #1F3A5F;
    --shiv-orange-dark: #d9621a;
    --shiv-orange-light: #fff4ee;
    --shiv-orange-glow: rgba(255, 122, 41, 0.12);
    --shiv-black: #111010;
    --shiv-gray-dark: #1e1e1e;
    --shiv-gray: #3a3a3a;
    --shiv-gray-mid: #6b7280;
    --shiv-gray-light: #f4f4f2;
    --shiv-border: rgba(0, 0, 0, 0.08);
    --shiv-white: #ffffff;
    --shiv-radius: 12px;
    --shiv-radius-sm: 8px;
}

/* ── SECTION BASE ─────────────────────────────── */
.shiv-section {
    padding: 72px 24px;
}

.shiv-container {
    max-width: 1296px;
    margin: 0 auto;
}

.shiv-container-contact {
    max-width: 1300px;
    margin: 0 auto;
}

.shiv-section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shiv-orange);
    margin-bottom: 10px;
}

.shiv-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #1F3A5F;
    line-height: 1.1;
    margin-bottom: 16px;
}

.shiv-section-desc {
    font-size: 15px;
    color: var(--shiv-gray-mid);
    max-width: 640px;
    line-height: 1.8;
}

/* ── WHO WE ARE ───────────────────────────────── */
.shiv-who {
    background: var(--shiv-white);
}

.shiv-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

@media (max-width: 720px) {
    .shiv-who-grid {
        display: flex;
        flex-direction:column;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px; /* Adjusted gap for mobile touch spacing */
        padding-bottom: 15px; /* Prevents shadow clipping and accommodates scroll bar */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Smooth inertia scrolling for iOS devices */
    }

    /* Target the direct children (.shiv-who-text and .shiv-info-pills) so they behave as sliding panels */
    .shiv-who-grid > div {
        flex: 0 0 85%; /* Shows 85% of the active card, leaving a 15% peek of the next slide */
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    /* Optional: Soft visual indicator styling for the horizontal scroll bar track */
    .shiv-who-grid::-webkit-scrollbar {
        height: 4px;
    }
    .shiv-who-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }
    .shiv-who-grid::-webkit-scrollbar-thumb {
        background: #1b448a;
        border-radius: 2px;
    }
}
.shiv-who-text p {
    font-size: 15px;
    color: var(--shiv-gray-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.shiv-who-text p:last-child {
    margin-bottom: 0;
}

.shiv-highlight-strip {
    border-left: 3px solid var(--shiv-orange);
    padding: 16px 20px;
    background: var(--shiv-orange-light);
    border-radius: 0 var(--shiv-radius-sm) var(--shiv-radius-sm) 0;
    margin: 24px 0;
}

.shiv-highlight-strip p {
    font-size: 15px;
    color: var(--shiv-gray-dark) !important;
    font-weight: 500;
    margin: 0 !important;
}

.shiv-info-pills img {
    max-height: 340px;
    border-radius: 15px;
}

/* ── QUALITY POLICY ───────────────────────────── */
.shiv-quality {
    background: var(--shiv-black);
    position: relative;
    overflow: hidden;
}

.shiv-quality::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgb(41 67 255 / 15%);
    pointer-events: none;
}

.shiv-quality .shiv-section-title {
    color: var(--shiv-white);
}

.shiv-quality .shiv-section-tag {
    color: #fff;
}

.shiv-quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 620px) {
    .shiv-quality-grid {
        grid-template-columns: 1fr;
    }
}

.shiv-quality-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgb(41 67 255 / 15%);
    border-radius: var(--shiv-radius);
    padding: 28px;
}

.shiv-quality-card-icon {
    width: 44px;
    height: 44px;   
    border-radius: 10px;
    background: rgb(41 67 255 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.shiv-quality-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shiv-quality-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--shiv-white);
    margin-bottom: 8px;
}

.shiv-quality-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── CAPABILITIES ─────────────────────────────── */

.shiv-caps {
    background: var(--shiv-white);
}

.shiv-caps-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 420px;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}

.shiv-caps-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shiv-caps-image {
    position: sticky;
    top: 100px;
}

.shiv-caps-image img {
    width: 81%;
    height: 525px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Cards */

.shiv-cap-card {
    background: #fff;
    border: 1px solid var(--shiv-border);
    border-radius: 14px;
    padding: 24px;
    transition: all .3s ease;
}

.shiv-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgb(41 67 255 / 15%);
    border-color: rgb(41 67 255 / 15%);
}

.shiv-cap-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.shiv-cap-num {
    font-size: 30px;
    font-weight: 700;
    color: var(--shiv-orange);
    line-height: 1;
}

.shiv-cap-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--shiv-black);
}

.shiv-cap-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--shiv-gray-mid);
    margin: 0;
}

/* Tablet */

@media (max-width: 991px) {
    .shiv-caps-layout {
        grid-template-columns: 1fr;
    }

    .shiv-caps-image {
        position: relative;
        top: 0;
        order: -1;
    }

    .shiv-caps-image img {
        height: 400px;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .shiv-caps-wrap {
        grid-template-columns: 1fr;
    }

    .shiv-caps-image img {
        height: 300px;
    }
}

/* ── PRODUCTS WE SUPPLY ───────────────────────── */
.shiv-products {
    background: var(--shiv-gray-light);
}

.shiv-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.shiv-product-tag {
    background: var(--shiv-white);
    border: 1px solid var(--shiv-border);
    border-radius: var(--shiv-radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--shiv-gray-dark);
    transition: border-color 0.15s, background 0.15s;
}

.shiv-product-tag:hover {
    border-color: var(--shiv-orange);
    background: var(--shiv-orange-light);
}

/* ── LAB SECTION ─────────────────────────────── */

.shiv-lab-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
}

.shiv-lab-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.shiv-lab-list {
    margin-top: 35px;
    display: grid;
    gap: 15px;
}

.shiv-lab-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all .3s ease;
}

.shiv-lab-item:hover {
    transform: translateX(6px);
    border-color: #1F3A5F;
    box-shadow: 0 10px 25px rgba(255,122,41,.12);
}

.shiv-lab-item span {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.shiv-lab-item small {
    color: #6b7280;
    font-size: 13px;
}

/* Tablet */
@media (max-width: 991px) {
    .shiv-lab-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shiv-lab-image img {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .shiv-lab-image img {
        height: 280px;
    }
}

/* ── CONTACT STRIP ────────────────────────────── */
.shiv-cta {
    background: var(--shiv-orange);
    padding: 60px 24px;
    text-align: center;
}

.shiv-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--shiv-white);
    margin-bottom: 12px;
}

.shiv-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.shiv-cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shiv-btn-white {
    background: var(--shiv-white);
    color: var(--shiv-orange);
    padding: 12px 28px;
    border-radius: var(--shiv-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.shiv-btn-white:hover {
    background: #ffe8d8;
}

.shiv-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--shiv-white);
    padding: 12px 28px;
    border-radius: var(--shiv-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s;
}

.shiv-btn-outline:hover {
    border-color: #fff;
}

/* ── DIVIDER ──────────────────────────────────── */
.shiv-divider {
    border: none;
    border-top: 1px solid var(--shiv-border);
    margin: 40px 0;
}










/*=================== Product page ====================*/

.gallery-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.gallery-section .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    font-size: 17px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover::before {
    opacity: 1;
}

@media(max-width:768px) {

    .gallery-section {
        padding: 70px 20px;
    }

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

    .gallery-item img {
        height: 220px;
    }

}




.shiv-section-contact {
    padding: 72px 24px 0px;
}






    /* Card 1 */
    .feature-card:nth-child(1) {
        background-image: url("img/cast_iron_slider.png");
    }

    /* Card 2 */
    .feature-card:nth-child(2) {
        background-image: url("img/ductile_iron_slider.png");
    }
    /* Card 2 */
    .feature-card:nth-child(3) {
        background-image: url("img/WhatsApp Image 2026-07-11 at 9.52.26 AM.jpeg");
    }

    .feature-section {

        padding: 20px 0;

    }

    .feature-container {

        width: 90%;
        margin: auto;

        display: flex;
        flex-direction:row;

        gap: 22px;

    }

    .feature-card {
        position: relative;
        width:50%;
        overflow: hidden;
        border-radius: 30px;
        height: 380px;
        cursor: pointer;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        transition: .45s;
    }


    /* BLUE BACKGROUND */

    .feature-card::before {

        content: "";

        position: absolute;

        left: 0;
        bottom: -100%;

        width: 100%;
        height: 100%;

        background: #1F3A5F;

        border-radius: 30px;

        transition: .55s ease;

        z-index: 0;

    }

    .feature-card:hover::before {

        bottom: 0;

    }

    .feature-card:hover {

        transform: translateY(-12px);

    }


    /* ICON */

    .feature-icon {

        position: relative;

        z-index: 3;

        width: 60px;
        height: 60px;

    }

    .feature-icon img {

        width: 100%;

        transition: .4s;

        filter: grayscale(100%);

    }

    .feature-card:hover .feature-icon img {

        filter: brightness(100);

    }

    /* ARROW */

    .feature-arrow {

        position: absolute;

        right: 40px;
        top: 35px;

        font-size: 34px;

        z-index: 3;

        transition: .4s;

    }

    .feature-card:hover .feature-arrow {

        color: #fff;

        transform: translate(5px, -5px);

    }


    /* CONTENT */

    .feature-content {

        position: absolute;

        left: 35px;
        right: 35px;

        bottom: 35px;

        z-index: 3;

    }

    .feature-content h1 {
        color: #d3d3d3;
        font-size: 30px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transform: translateY(70px);
        transition: .4s;
    }

    .feature-content p {

        margin-top: 18px;

        color: #fff;

        line-height: 30px;

        font-size: 17px;

        opacity: 0;

        transform: translateY(80px);

        transition: .55s;

    }


    /* HOVER */

    .feature-card:hover h1 {

        color: #fff;

        transform: translateY(0);

    }

    .feature-card:hover p {

        opacity: 1;

        transform: translateY(0);

    }


    /* DESKTOP */

    @media(max-width:1200px) {

        .feature-container {

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

        }

    }


    /* MOBILE */

    @media(max-width:768px) {

        .feature-container {

            grid-template-columns: 1fr;

        }

        .feature-card {

            height: 330px;

        }

        .feature-content h1 {

            font-size: 28px;

        }

    }

/* Section Styling */
.sand-process-section {
    width: 100%;
}

.section-title-wrapper {
    width: 100%;
    margin-bottom: 5px;
}

.section-title-wrapper h1 {
   font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #1F3A5F; /* Matches your existing heading styles */
    margin-left:5%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sand-feature-container{
    width:100%;
    display:flex;
    flex-direction:column;
}
/* Slider Layout Base */
.sand-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    display: flex;
}

/* The continuous running track */
.sand-slider-track {
    display: flex;
    width: calc(320px * 8); /* Base card width * total cards (including clones) */
    padding:15px 0;
}

/* Individual Image Cards */
.sand-slide-card {
    width: 300px;
    height: 180px; /* Adjust height based on your banner proportions */
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transperant;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.sand-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%); /* Gives it an aesthetic, uniform industrial look */
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sand-slide-card:hover img {
    filter: grayscale(0%);
}

/* --- Animation Logics --- */

/* Row 1: Left to Right */
.row-left-to-right .sand-slider-track {
    animation: scrollLeftToRight 25s linear infinite;
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

/* Row 2: Right to Left */
.row-right-to-left .sand-slider-track {
    animation: scrollRightToLeft 25s linear infinite;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* Pause slider movement when user hovers over a row */
.sand-slider-wrapper:hover .sand-slider-track {
    animation-play-state: paused;
}








    
.marquee-container{
    width:100%;
    background:#f25c05;
    overflow:hidden;
    white-space:nowrap;
    padding:15px 0;
}

.marquee-content{
    display:inline-block;
    animation: scrollLeft 20s linear infinite;
}

.marquee-content span{
    color:#fff;
    font-size:32px;
    font-weight:600;
    margin:0 40px;
}

.dot{
    color:#fff;
    font-size:30px;
    margin:0 20px;
}

@keyframes scrollLeft{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

.marquee-content{
    display:flex;
    width:max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* Search Icon Style */
.search-trigger {
    font-size: 18px;
    margin-right: 20px;
    color: #333; /* Change to your theme color */
}

/* Full-Screen Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

.search-container {
    width: 80%;
    max-width: 600px;
}

.search-container form {
    display: flex;
    border-bottom: 2px solid #000;
}

.search-container input {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 24px;
    background: transparent;
    outline: none;
}