@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --chemoil-navy: #031B33;
    --chemoil-blue: #0A355C;
    --chemoil-accent: #031B33;
    --chemoil-light-blue: #0A355C;
    --chemoil-gold: #031B33;
    --chemoil-light: #F8F9FA;
    --chemoil-dark: #0A192F;
    --chemoil-text-dark: #333333;
    --chemoil-text-muted: #6C757D;
    --chemoil-border: #E5E9F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Wrapper Settings */
.chemoil-tank-wrapper {
    font-family: var(--font-body);
    color: var(--chemoil-text-dark);
    background-color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

.chemoil-tank-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.chemoil-tank-wrapper h1, 
.chemoil-tank-wrapper h2, 
.chemoil-tank-wrapper h3, 
.chemoil-tank-wrapper h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--chemoil-navy);
    line-height: 1.2;
    margin: 0 0 15px 0;
}

/* Breadcrumbs Bar */

.chemoil-tank-hero {
    background-image: url('http://localhost/Infopixal/chemoilfinal/wp-content/uploads/2026/07/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: #ffffff;
    
    
    
    
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 27, 51, 0.7) !important;
    z-index: 1;
    
}
.chemoil-tank-hero .container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    color: #ffffff;
    font-size: 54px;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 35px;
    line-height: 1.65;
}
.hero-tag {
    display: block;
    color: var(--chemoil-light-blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 50px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn-primary-action {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: #031b33;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #031b33;
    transition: var(--transition);
}
.btn-primary-action:hover {
    background-color: #ffffff;
    color: #031b33;
    border-color: #ffffff;
}
.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #ffffff;
    transition: var(--transition);
}
.btn-secondary-action:hover {
    background-color: #ffffff;
    color: #031b33;
}
.hero-visual {
    display: flex;
    justify-content: center;
}
.hero-valves-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.45));
    animation: floatAnim 6s ease-in-out infinite;
}
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Overlapping Benefit Cards */
.chemoil-benefits-cards-section {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 40px;
    background: transparent;
}
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit-overlap-card {
    background-color: #ffffff;
    border: 1px solid var(--chemoil-border);
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}
.benefit-overlap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(13, 110, 253, 0.2);
}
.card-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--chemoil-accent);
    flex-shrink: 0;
}
.benefit-overlap-card h4 {
    font-size: 15px;
    margin: 0 0 4px 0;
    color: var(--chemoil-navy);
    font-family: var(--font-heading);
    font-weight: 700;
}
.benefit-overlap-card p {
    font-size: 12px;
    color: var(--chemoil-text-muted);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Portfolio Section */
.chemoil-tank-portfolio {
    padding: 100px 0;
    background-color: transparent;
}
.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-subtitle-tag {
    display: inline-block;
    color: var(--chemoil-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}
.portfolio-header h2 {
    font-size: 38px;
    color: var(--chemoil-navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.portfolio-card {
    background: #ffffff;
    border: 1px solid var(--chemoil-border);
    border-radius: 8px;
    padding: 35px 30px 30px 30px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}
.card-index {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--chemoil-accent);
    background: rgba(13, 110, 253, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    z-index: 10;
}

.card-columns {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
    align-items: flex-start;
}
.card-image-col {
    background: #ffffff;
    border-radius: 8px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.card-image-col::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    
    background-size: 16px 16px;
    opacity: 0.35;
    border-radius: 50%;
}
.card-image-col img {
    max-height: 150px;
    max-width: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.portfolio-card:hover .card-image-col img {
    transform: scale(1.06);
}

.card-details-col h3 {
    font-size: 20px;
    color: var(--chemoil-navy);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.spec-section {
    margin-bottom: 15px;
}
.spec-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--chemoil-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spec-list li {
    font-size: 13.5px;
    color: var(--chemoil-text-muted);
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
}
.spec-list li::before {
    content: '\2022';
    color: var(--chemoil-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 14px;
    top: -1px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge-oval {
    display: inline-block;
    background: #f1f5f9;
    color: var(--chemoil-navy);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--chemoil-border);
}

.btn-view-product {
    display: inline-block;
    border: 1px solid var(--chemoil-border);
    color: var(--chemoil-navy);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 10px;
    text-align: center;
}
.portfolio-card:hover .btn-view-product {
    border-color: var(--chemoil-accent);
    color: var(--chemoil-accent);
    background: rgba(13, 110, 253, 0.03);
}

/* Industries We Serve */
/* Industries We Serve Section */
.chemoil-industries-serve {
    padding: 80px 0;
    background-color: #ffffff;
}
.chemoil-industries-serve .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-subtitle-tag {
    display: inline-block;
    color: var(--chemoil-blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.industries-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.industry-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}
.industry-card:hover .industry-bg-image {
    transform: scale(1.06);
}
.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3,27,51,0.9) 0%, rgba(3,27,51,0.2) 100%);
    transition: var(--transition);
    z-index: 2;
}
.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(10,53,92,0.95) 0%, rgba(10,53,92,0.3) 100%);
}
.industry-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    width: 100%;
    text-align: center;
}
.industry-icon-new {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}
.industry-card:hover .industry-icon-new {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px);
}
.industry-card:hover .industry-icon-new svg * {
    stroke: var(--chemoil-blue);
    fill: none;
}
.industry-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Why Choose Chemoil */
.chemoil-why-choose {
    padding: 90px 0;
    background-color: var(--chemoil-navy);
}
.chemoil-why-choose .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.chemoil-why-choose .section-header .section-subtitle-tag {
    display: inline-block;
    color: var(--chemoil-light-blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: rgba(13, 110, 253, 0.3);
}
.industry-icon-new {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.industry-icon-new svg {
    display: block;
}
.why-icon-box-new {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}
.why-icon-box-new svg {
    width: 24px;
    height: 24px;
}
.why-blue {
    background: rgba(13, 110, 253, 0.15);
    color: #38bdf8;
}
.why-yellow {
    background: rgba(255, 193, 7, 0.15);
    color: #facc15;
}
.why-lightblue {
    background: rgba(10, 53, 92, 0.15);
    color: var(--chemoil-light-blue);
}
.why-navy {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.why-card h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.why-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Technical Downloads */
.chemoil-technical-downloads {
    padding: 80px 0;
    background-color: var(--chemoil-light);
}
.chemoil-technical-downloads .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.download-card {
    background: #ffffff;
    border: 1px solid var(--chemoil-border);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: rgba(13, 110, 253, 0.25);
}
.doc-icon {
    font-size: 24px;
}
.doc-info h4 {
    font-size: 14.5px;
    color: var(--chemoil-navy);
    margin: 0 0 2px 0;
    font-family: var(--font-heading);
}
.doc-format {
    font-size: 11px;
    font-weight: 700;
    color: var(--chemoil-text-muted);
    text-transform: uppercase;
}
.btn-download-link {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--chemoil-accent);
    text-decoration: none;
    white-space: nowrap;
}
.btn-download-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.chemoil-cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    color: #031B33;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3,27,51,0.96) 0%, rgba(10,53,92,0.85) 100%);
    z-index: 1;
}
.chemoil-cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-flex-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-text-new h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
    font-family: var(--font-heading);
}
.cta-text-new p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.cta-buttons-new {
    display: flex;
    gap: 15px;
}
.btn-cta-light-new {
    display: inline-block;
    background-color: #ffffff;
    color: var(--chemoil-navy) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-cta-light-new:hover {
    background-color: #f8fafc;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-cta-outline-new {
    display: inline-block;
    border: 1.5px solid #ffffff;
    
    text-decoration: none;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-cta-outline-new:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Footer Section */


.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    max-width: 250px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #031B33;
    transition: var(--transition);
}
.footer-socials a:hover {
    background-color: var(--chemoil-accent);
    border-color: var(--chemoil-accent);
}








.footer-contact li {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    font-size: 13.5px;
    margin-bottom: 15px;
}






/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--chemoil-accent);
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-to-top:hover {
    background-color: var(--chemoil-navy);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 44px;
    }
    .hero-content p {
        margin: 0 auto 35px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .benefits-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .industries-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-flex-new {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }
    .card-columns {
        grid-template-columns: 1fr;
    }
    .card-image-col {
        height: 150px;
    }
    .industries-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    
    
}



/* --- WHY CHOOSE CHEMOIL FIXES --- */
.chemoil-why-choose .section-header h2,
.chemoil-why-choose .why-choose-header h2 {
    color: #ffffff !important;
}

.why-lightblue {
    color: #ffffff !important;
}


/* --- WHY CHOOSE CHEMOIL EXTRA FIXES --- */
.chemoil-why-choose .section-header .section-subtitle-tag,
.chemoil-why-choose .why-choose-header .section-subtitle-tag {
    color: #ffffff !important;
}

.chemoil-why-choose .why-lightblue svg,
.chemoil-why-choose .why-lightblue {
    stroke: #ffffff !important;
    color: #ffffff !important;
}


/* --- CTA BUTTON TEXT COLOR FIX --- */
.btn-cta-outline-new {
    color: #ffffff !important;
}


/* --- HERO SECTION TAG COLOR FIX --- */
.hero-content .section-tag {
    color: #ffffff !important;
}


/* --- HERO SECTION TAG EXTRA COLOR FIX --- */
.hero-content .hero-tag {
    color: #ffffff !important;
}



/* Force Parent Theme to Full Width & Hide Default Title (Aggressive) */
.page-title { display: none !important; }
#main { padding: 0 !important; margin: 0 !important; overflow-x: hidden !important; }
#sidebar { display: none !important; }

/* Stretched Full-Width Hero Section with Boxed Centered Grid */
.chemoil-tank-hero {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
.chemoil-tank-hero .hero-grid {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}


/* ==========================================================================
   WPBakery Grid and Column Layout Compatibility Overrides
   ========================================================================== */
.benefits-cards-grid,
.portfolio-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
.benefits-cards-grid > .wpb_column,
.benefits-cards-grid > .vc_column_container,
.portfolio-grid > .wpb_column,
.portfolio-grid > .vc_column_container {
    float: none !important;
    margin: 0 !important;
}

/* 4 Column Grid Items (Benefits) */
.benefits-cards-grid > .vc_col-sm-3 {
    width: calc(25% - 18px) !important;
    flex: 0 0 calc(25% - 18px) !important;
    max-width: calc(25% - 18px) !important;
}

/* 3 Column Grid Items (Portfolio) */
.portfolio-grid > .vc_col-sm-4 {
    width: calc(33.333% - 16px) !important;
    flex: 0 0 calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
}

/* 2 Column Grid Items (PRDS & Strainers) */
.portfolio-grid > .vc_col-sm-6 {
    width: calc(50% - 12px) !important;
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
}

@media (max-width: 991px) {
    .benefits-cards-grid > .vc_col-sm-3 {
        width: calc(50% - 12px) !important;
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
    .portfolio-grid > .vc_col-sm-4 {
        width: calc(50% - 12px) !important;
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
}

@media (max-width: 767px) {
    .benefits-cards-grid > .vc_col-sm-3,
    .portfolio-grid > .vc_col-sm-4,
    .portfolio-grid > .vc_col-sm-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   WPBakery Image Wrapper & Layout Order Compatibility Overrides
   ========================================================================== */
.hero-grid > .wpb_column,
.hero-grid > .vc_column_container {
    order: initial !important;
}
.hero-visual .vc_single_image-wrapper {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}


/* ==========================================================================
   CSS Fixes for mix-blend-mode Stacking Context & Pseudo-elements Wrapping
   ========================================================================== */
.benefits-cards-grid::before,
.benefits-cards-grid::after,
.portfolio-grid::before,
.portfolio-grid::after {
    display: none !important;
    content: none !important;
}

.hero-visual {
    position: static !important;
    z-index: auto !important;
}
.hero-grid {
    isolation: auto !important;
}
.hero-visual img {
    mix-blend-mode: multiply !important;
    background: transparent !important;
}


/* ==========================================================================
   CSS Center Alignment & Grid Margin Resets
   ========================================================================== */
.chemoil-custom-category-wpbakery-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.benefits-cards-grid,
.portfolio-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
}


/* --- Dynamic Full Width Benefits Grid Option --- */
.benefits-cards-grid.benefits-fullwidth {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
}
