@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-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);
}

/* Outer Wrapper */
.chemoil-about-wrapper {
    font-family: var(--font-body);
    color: var(--chemoil-text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.chemoil-about-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.chemoil-about-wrapper h1, 
.chemoil-about-wrapper h2, 
.chemoil-about-wrapper h3, 
.chemoil-about-wrapper h4, 
.chemoil-about-wrapper h5, 
.chemoil-about-wrapper h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--chemoil-navy);
    line-height: 1.2;
    margin: 0 0 15px 0;
}

/* Breadcrumbs Section */

.section-tag {
    display: inline-block;
    color: #ffffff !important;
    background-color: #0A355C !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.text-blue {
    color: #0A355C;
}

/* Hero Section */
.chemoil-about-hero {
    padding: 80px 0;
    background-color: #ffffff;
}
.chemoil-about-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-text-col h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 16px;
    color: var(--chemoil-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-stats-row {
    display: flex;
    gap: 24px;
}
.hero-stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid var(--chemoil-border);
    padding: 18px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.hero-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}
.stat-icon-wrapper {
    font-size: 24px;
    color: var(--chemoil-accent);
    background-color: rgba(13, 110, 253, 0.06);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.stat-content h3 {
    font-size: 22px;
    margin: 0;
    color: var(--chemoil-navy);
}
.stat-content p {
    font-size: 13px;
    color: var(--chemoil-text-muted);
    margin: 0;
    font-weight: 500;
}

.hero-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}
.hero-image-frame:hover img {
    transform: scale(1.04);
}

/* Stats Strip */
.chemoil-stats-strip {
    background-color: #ffffff;
    border-top: 1px solid var(--chemoil-border);
    border-bottom: 1px solid var(--chemoil-border);
    padding: 30px 0;
}
.chemoil-stats-strip .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.chemoil-stats-strip .stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.chemoil-stats-strip .stat-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chemoil-accent);
}
.chemoil-stats-strip .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--chemoil-navy);
    font-family: var(--font-heading);
}
.chemoil-stats-strip .stat-label {
    font-size: 13px;
    color: var(--chemoil-text-muted);
    font-weight: 500;
}

/* Story, Journey, Timeline & Cards */
.chemoil-story-section {
    padding: 100px 0;
    background-color: var(--chemoil-light);
}
.chemoil-story-section .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}
.story-left-col h2 {
    font-size: 38px;
    margin-bottom: 20px;
}
.story-desc {
    color: var(--chemoil-text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}
.story-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.story-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--chemoil-navy);
}
.story-checklist li span {
    color: var(--chemoil-accent);
    font-weight: 700;
    font-size: 18px;
}

.btn-blue-action {
    display: inline-block;
    background-color: var(--chemoil-blue);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-blue-action:hover {
    background-color: var(--chemoil-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

/* Timeline */
.timeline-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
    position: relative;
    border: 1px solid var(--chemoil-border);
}
.timeline-container h3 {
    font-size: 20px;
    margin-bottom: 25px;
}
.timeline-line {
    position: absolute;
    top: 106px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--chemoil-border);
    z-index: 1;
}
.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    width: 80px;
}
.node-dot {
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: 3px solid var(--chemoil-border);
    border-radius: 50%;
    margin-bottom: 10px;
    transition: var(--transition);
}
.node-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--chemoil-text-muted);
    transition: var(--transition);
}
.node-title {
    display: none; /* Keep text clean, read slider below */
}

/* Active Timeline State */
.timeline-node.active .node-dot {
    border-color: var(--chemoil-accent);
    background-color: var(--chemoil-accent);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.15);
}
.timeline-node.active .node-year {
    color: var(--chemoil-accent);
}

.timeline-slider-content {
    background-color: var(--chemoil-light);
    padding: 20px;
    border-radius: 6px;
    min-height: 80px;
}
.timeline-slide {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.timeline-slide.active {
    display: block;
}
.timeline-slide p {
    margin: 0;
    font-size: 14px;
    color: var(--chemoil-text-dark);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MVV Cards Styling */
.mvv-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mvv-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border: 1px solid var(--chemoil-border);
    transition: var(--transition);
}
.mvv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.mission-card {
    background-color: var(--chemoil-navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
}
.mission-card h4, .mission-card p {
    color: #ffffff;
    margin: 0;
}
.mission-card h4 {
    margin-bottom: 5px;
    font-size: 18px;
}
.mission-card .mvv-icon {
    font-size: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mvv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mvv-row h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.mvv-row p {
    font-size: 13px;
    color: var(--chemoil-text-muted);
    margin: 0;
}
.mvv-row .mvv-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--chemoil-accent);
}
.values-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}
.values-card li {
    font-size: 13px;
    font-weight: 600;
    color: var(--chemoil-navy);
    background-color: var(--chemoil-light);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Why Choose Section */
.chemoil-why-choose {
    padding: 100px 0;
    background-color: #ffffff;
}
.why-choose-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}
.why-choose-header h2 {
    font-size: 36px;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.why-box {
    background-color: #ffffff;
    border: 1px solid var(--chemoil-border);
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
    transition: var(--transition);
    text-align: left !important;
}
.why-box:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.06);
}
.why-icon {
    font-size: 28px;
    width: 54px;
    height: 54px;
    background-color: rgba(10, 53, 92, 0.08) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A355C !important;
    margin-bottom: 20px;
    border: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}
.why-box:hover .why-icon {
    background-color: #0A355C !important;
    color: #ffffff !important;
}
.why-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.why-box p {
    font-size: 14px;
    color: var(--chemoil-text-muted);
    margin: 0;
}

/* Capabilities Section */
.chemoil-capabilities-section {
    padding: 100px 0;
    background-color: var(--chemoil-light);
}
.chemoil-capabilities-section .container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.capabilities-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}
.capabilities-left p {
    color: var(--chemoil-text-muted);
    margin-bottom: 35px;
}
.capabilities-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.capability-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--chemoil-border);
    transition: var(--transition);
}
.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.cap-img-wrapper {
    height: 200px;
    overflow: hidden;
}
.cap-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.capability-card:hover .cap-img-wrapper img {
    transform: scale(1.05);
}
.cap-info {
    padding: 24px;
}
.cap-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.cap-info p {
    font-size: 13px;
    color: var(--chemoil-text-muted);
    margin: 0;
}

/* Global Presence Section */
.chemoil-global-presence {
    padding: 85px 0;
    background-color: #ffffff;
}
.chemoil-global-presence .global-presence-container {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr 0.8fr !important;
    gap: 30px !important;
    align-items: center;
}
.presence-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}
.presence-info p {
    color: var(--chemoil-text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}
.presence-info a.btn-primary-solid,
.global-presence-container a.btn-primary-solid {
    background-color: #0A355C !important;
    color: #ffffff !important;
    border: none !important;
    padding: 11.5px 22px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.presence-info a.btn-primary-solid:hover,
.global-presence-container a.btn-primary-solid:hover {
    background-color: #031B33 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.presence-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.presence-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--chemoil-accent);
}
.presence-stat-lbl {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--chemoil-text-muted);
    font-weight: 600;
}
.map-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
}
.map-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1);
    transform-origin: center center;
}
.map-visual {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.92) contrast(0.9) opacity(0.35);
}

/* Region-Specific Zooms - Ultra High Specificity */
body .global-presence-container .map-wrapper.zoom-na .map-inner { transform-origin: 22% 32% !important; transform: scale(2.2) !important; }
body .global-presence-container .map-wrapper.zoom-sa .map-inner { transform-origin: 34% 65% !important; transform: scale(2.2) !important; }
body .global-presence-container .map-wrapper.zoom-eu .map-inner { transform-origin: 51% 25% !important; transform: scale(2.5) !important; }
body .global-presence-container .map-wrapper.zoom-af .map-inner { transform-origin: 51% 50% !important; transform: scale(2.0) !important; }
body .global-presence-container .map-wrapper.zoom-me .map-inner { transform-origin: 58% 38% !important; transform: scale(2.6) !important; }
body .global-presence-container .map-wrapper.zoom-ap .map-inner { transform-origin: 78% 52% !important; transform: scale(2.4) !important; }

.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--chemoil-accent);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(10, 53, 92, 0.4);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
.pin::before {
    content: attr(data-title);
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(3, 27, 51, 0.95);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 12;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.pin:hover::before,
.pin.highlighted::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.pin::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--chemoil-accent);
    border-radius: 50%;
    animation: pin-pulse 1.8s infinite ease-out;
    opacity: 0;
}
.pin.highlighted {
    background-color: #ffc107 !important;
    border-color: #ffffff !important;
    transform: scale(1.6);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.8) !important;
    z-index: 10;
}
.pin.highlighted::after {
    border-color: #ffc107 !important;
    width: 24px;
    height: 24px;
    top: -8px;
    left: -8px;
}
@keyframes pin-pulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}
.pin:hover {
    transform: scale(1.3);
    background-color: var(--chemoil-navy);
    border-color: #ffc107;
}
.key-markets-card {
    background-color: var(--chemoil-navy);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}
.key-markets-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.markets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.markets-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.markets-list li a {
    color: #ffffff !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
    transition: var(--transition);
}
.markets-list li.active a,
.markets-list li a:hover {
    color: #ffc107 !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .chemoil-global-presence .global-presence-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .chemoil-global-presence .map-wrapper {
        display: none !important;
    }
}

/* Partner Carousel / Logos */
.chemoil-partners-section {
    padding: 60px 0;
    background-color: var(--chemoil-light);
    border-top: 1px solid var(--chemoil-border);
    border-bottom: 1px solid var(--chemoil-border);
}
.partners-header {
    text-align: center;
    margin-bottom: 30px;
}
.partners-carousel-wrapper {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none; /* Firefox */
}
.partners-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.partners-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}
.partner-logo-item {
    flex-shrink: 0;
}
.partner-logo-box {
    background: #ffffff;
    border: 1px solid var(--chemoil-border);
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    min-width: 150px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: var(--transition);
}
.partner-logo-box:hover {
    color: var(--chemoil-accent);
    border-color: rgba(13, 110, 253, 0.2);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.05);
}

/* Call to Action Banner */
.chemoil-cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3,27,51,0.95) 0%, rgba(10,53,92,0.85) 100%);
    z-index: 1;
}
.chemoil-cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-text h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
}
.cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.cta-buttons {
    display: flex;
    gap: 15px;
}
.btn-cta-light {
    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:hover {
    background-color: var(--chemoil-accent);
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.25);
}
.btn-cta-outline {
    display: inline-block;
    border: 1.5px solid #ffffff;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 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: #ffffff;
    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;
}






/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--chemoil-accent);
    color: #ffffff !important;
    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) {
    .chemoil-about-hero .container,
    .chemoil-story-section .container,
    .chemoil-capabilities-section .container,
    .chemoil-global-presence .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-frame,
    .map-view-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
}

@media screen and (max-width: 768px) {
    .hero-text-col h1 {
        font-size: 32px;
    }
    .hero-stats-row {
        flex-direction: column;
    }
    .chemoil-stats-strip .container {
        justify-content: center;
    }
    .timeline-nodes {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
        gap: 20px;
    }
    .timeline-line {
        display: none;
    }
    .mvv-row {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .capabilities-right-grid {
        grid-template-columns: 1fr;
    }
    .chemoil-cta-section .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    
    
}



/* Partner Ticker Animation (Copied from Homepage) */
.partner-ticker-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.partner-ticker-container {
    overflow: hidden;
    position: relative;
    max-width: 510px; /* Exactly 4 logos (4 * 120px) + 3 gaps (3 * 10px) = 510px */
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.partner-ticker-track {
    display: flex;
    gap: 10px; /* 10px gap between logos */
    width: max-content;
    animation: partnerMarquee 35s linear infinite;
}
.partner-ticker-track:hover {
    animation-play-state: paused;
}
.partner-ticker-track .partner-logo-box {
    flex-shrink: 0;
    width: 120px;
    padding: 0 10px;
}
.partner-ticker-track .partner-logo-box svg {
    width: 100px;
    height: 30px;
}
@keyframes partnerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Partner Logo Box (Copied from Homepage) */
.partner-logo-box {
    flex-shrink: 0;
    width: 120px;
    padding: 0 10px;
}
.partner-ticker-track .partner-logo-box svg {
    width: 100px;
    height: 30px;
}
@keyframes partnerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.partner-logo-box {
    border: 1.5px solid #dde4ee;
    border-radius: 8px;
    background: #fff;
    height: 52px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    min-width: 90px;
}
.partner-logo-box:hover {
    border-color: var(--chemoil-blue);
    box-shadow: 0 4px 14px rgba(10,53,92,0.12);
    transform: translateY(-2px);
}
.plb-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    font-family: var(--font-heading);
}
/* BFLON */
.plb-name.bflon { color: #d32f2f; }
.plb-name.bflon span { color: #0a355c; }
/* MASCOT */
.plb-name.mascot { color: #1e4620; font-size: 12px; }
.plb-name.mascot .mascot-bars { color: var(--chemoil-blue); font-weight: 900; }
/* COVA-TECH */
.plb-name.covatech {
    color: #0288d1;
    font-size: 11px;
    border-top: 2px solid #0288d1;
    border-bottom: 2px solid #0288d1;
    padding: 2px 0;
}
/* CONTROL (Arpendra) */
.plb-name.arpendra { color: #0d47a1; font-size: 11px; }
.plb-name.arpendra .ap-circle {
    border: 2px solid #0d47a1;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    flex-shrink: 0;
}
/* G FLUID */
.plb-name.gfluid { color: #555; font-size: 12px; }
.plb-name.gfluid .gf-badge {
    background: #f57c00;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
}
/* Next Arrow */
.partner-next-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid #dde4ee;
    border-radius: 50%;
    background: #fff;
    color: var(--chemoil-navy);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.partner-next-arrow:hover {
    background: var(--chemoil-blue);
    border-color: var(--chemoil-blue);
    color: #fff;
    transform: translateX(2px);
    box-shadow: 0 4px 14px rgba(10,53,92,0.2);
}


/* Full Width Override for Partners on About Page */
.chemoil-partners-section .partner-ticker-container {
    max-width: 100% !important;
}
