/* =====================================================
   TRAUB MACHINING JOB WORK PAGE - OPTIMIZED CSS
   Mobile-First | Trust-Building | Image-Heavy Version
   ===================================================== */

/* Use existing CSS variables from style.css */
:root {
    --primary: #00A878;
    --primary-light: #33C49C;
    --primary-dark: #007a59;
    --secondary: #008FA3;
    --secondary-light: #4CC9D9;
    --secondary-dark: #006B78;
    --accent: #FFD166;
    --accent-dark: #E6B850;
    --light: #F4FFFA;
    --dark: #1E2A23;
    --gray-100: #FAFAFA;
    --gray-200: #E8F0ED;
    --gray-300: #D0DDD9;
    --gray-400: #9EAFA9;
    --gray-500: #6D7A76;
    --gray-600: #45504C;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.traub-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.traub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
}

.hero-cta .btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 209, 102, 0.5);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-machine-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

/* =====================================================
   SECTION COMMON ELEMENTS
   ===================================================== */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 168, 120, 0.3);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 20px auto;
    border-radius: 2px;
}

/* =====================================================
   TRUST BADGES & CERTIFICATIONS
   ===================================================== */

.cert-badge {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.2);
}

.cert-badge img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* =====================================================
   TRAUB INFO SECTION
   ===================================================== */

.traub-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 168, 120, 0.1);
    border-left: 5px solid var(--primary);
}

.traub-info-card h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.traub-info-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.traub-advantages {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
}

.traub-advantages h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.advantage-item {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: start;
}

.advantage-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.3);
}

.advantage-icon i {
    color: white;
    font-size: 1.4rem;
}

.advantage-content h5 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.advantage-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   STATISTICS COUNTER SECTION
   ===================================================== */

.stat-item {
    padding: 20px;
}

.stat-icon {
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* =====================================================
   CAPABILITY CARDS
   ===================================================== */

.capability-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 168, 120, 0.2);
    border-color: var(--primary);
}

.capability-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.3);
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(-5deg);
}

.capability-icon i {
    font-size: 1.8rem;
    color: white;
}

.capability-card h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.capability-list li strong {
    color: var(--dark);
    font-weight: 600;
}

/* =====================================================
   FACILITY IMAGE GALLERY
   ===================================================== */

.facility-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.facility-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 120, 0.2);
}

.facility-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facility-image-card:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   CLIENT LOGOS
   ===================================================== */

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 15px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* =====================================================
   INDUSTRY CARDS
   ===================================================== */

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 168, 120, 0.15);
    border-color: var(--primary);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.25);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0, 168, 120, 0.4);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.industry-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    background: transparent;
}

.faq-section .accordion-button {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 22px;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-left-color: var(--accent);
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(0.3);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    background: white;
    color: var(--gray-600);
    padding: 18px 22px;
    font-size: 0.9rem;
    line-height: 1.7;
    border-radius: 0 0 10px 10px;
    border-left: 5px solid var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.faq-section .accordion-body strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    color: white;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.cta-section .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary);
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.cta-section .btn-success {
    background: #25D366;
    color: white;
    border: none;
}

.cta-section .btn-success:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ===================================================== */

/* Tablets */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .traub-hero {
        padding: 60px 0 50px 0;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 18px;
    }

    .badge-number {
        font-size: 2.2rem;
    }

    .facility-image-card img {
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Hero Section */
    .traub-hero {
        padding: 40px 0 30px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero-highlights {
        gap: 10px;
    }

    .highlight-item {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 12px 25px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    /* Compress vertical spacing */
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Cards */
    .capability-card,
    .industry-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .capability-list li,
    .advantage-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .traub-info-card,
    .traub-advantages {
        padding: 22px 18px;
    }

    .advantage-item {
        gap: 15px;
        margin-bottom: 18px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon i {
        font-size: 1.2rem;
    }

    /* Facility Images */
    .facility-image-card img {
        height: 200px;
    }

    .image-caption {
        font-size: 0.85rem;
        padding: 12px;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-icon i {
        font-size: 2rem !important;
    }

    /* Certification Badges */
    .cert-badge {
        padding: 10px;
        margin-bottom: 15px;
    }

    .cert-badge img {
        max-height: 45px;
    }

    /* Client Logos */
    .client-logo {
        max-height: 60px;
        padding: 10px;
    }

    /* FAQ */
    .accordion-button {
        font-size: 0.9rem;
        padding: 15px 18px;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 15px 18px;
    }

    /* CTA Buttons */
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .capability-icon {
        width: 55px;
        height: 55px;
    }

    .capability-icon i {
        font-size: 1.5rem;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
    }

    .industry-icon i {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-icon i {
        font-size: 1.8rem !important;
    }

    .facility-image-card img {
        height: 180px;
    }

    .image-caption {
        font-size: 0.8rem;
        padding: 10px;
    }

    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* =====================================================
   ANIMATION ON SCROLL
   ===================================================== */

@media (prefers-reduced-motion: no-preference) {
    .capability-card,
    .industry-card,
    .facility-image-card {
        animation: fadeInUp 0.6s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* =====================================================
   PRINT OPTIMIZATION
   ===================================================== */

@media print {
    .traub-hero,
    .cta-section,
    .whatsapp-float-tooltip,
    .back-to-top,
    nav,
    footer {
        display: none !important;
    }
}

.video-thumb {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background:  #00A878;
    border-radius: 50%;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
}



.trust-badge {
    height: 110px;
    background: linear-gradient(145deg, #ffffff, #f2f6fb);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00A878;
}

.badge-sub {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #555;
    margin-top: 4px;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

/* Mobile optimization */
@media (max-width: 575px) {
    .trust-badge {
        height: 120px;
    }

    .badge-title {
        font-size: 18px;
    }
}
.industry-card {
    height: 100%;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #00A878;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(0,0,0,0.12);
}
.cta-section {
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

    /* ==========================================
       ENHANCED TRAUB PAGE — ADDITIONAL STYLES
       ========================================== */

    /* ---------- PROCESS FLOW SECTION ---------- */
    .process-section {
      background: linear-gradient(160deg, #f0fdf8 0%, #e8f8f5 100%);
      position: relative;
      overflow: hidden;
    }
    .process-section::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(0,168,120,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .process-steps {
      display: flex;
      gap: 0;
      position: relative;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 44px; left: 60px; right: 60px;
      height: 3px;
      background: linear-gradient(90deg, #00A878 0%, #008FA3 100%);
      z-index: 0;
    }
    .process-step {
      flex: 1;
      min-width: 130px;
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 8px;
    }
    .step-circle {
      width: 88px; height: 88px;
      background: white;
      border: 3px solid #00A878;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 6px 24px rgba(0,168,120,0.18);
      transition: all 0.3s ease;
      position: relative;
    }
    .step-circle:hover {
      background: #00A878;
      transform: translateY(-6px);
      box-shadow: 0 14px 36px rgba(0,168,120,0.35);
    }
    .step-circle:hover i,
    .step-circle:hover .step-num {
      color: white !important;
    }
    .step-num {
      font-size: 11px;
      font-weight: 800;
      color: #00A878;
      letter-spacing: 1px;
    }
    .step-circle i {
      font-size: 1.4rem;
      color: #00A878;
      margin-bottom: 2px;
      transition: color 0.3s;
    }
    .step-title {
      font-weight: 700;
      font-size: 0.82rem;
      color: #1E2A23;
      margin-bottom: 5px;
      line-height: 1.3;
    }
    .step-desc {
      font-size: 0.74rem;
      color: #6D7A76;
      line-height: 1.4;
    }

    /* ---------- MATERIAL TABLE ---------- */
    .material-section { background: #fff; }
    .material-table-wrap {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    .material-table-wrap table {
      margin: 0;
    }
    .material-table-wrap thead th {
      background: linear-gradient(135deg, #00A878 0%, #008FA3 100%);
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      padding: 16px 18px;
      letter-spacing: 0.4px;
    }
    .material-table-wrap tbody tr:nth-child(even) { background: #f4fffa; }
    .material-table-wrap tbody tr:hover { background: #e0faf2; transition: background 0.2s; }
    .material-table-wrap tbody td {
      padding: 13px 18px;
      font-size: 0.87rem;
      color: #45504C;
      border-color: #e8f0ed;
      vertical-align: middle;
    }
    .material-table-wrap tbody td:first-child {
      font-weight: 700;
      color: #00A878;
    }
    .mat-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      margin: 2px;
    }
    .mat-badge.ss { background: #e8f8ff; color: #0077aa; }
    .mat-badge.brass { background: #fff8e0; color: #aa7700; }
    .mat-badge.al { background: #f0f0ff; color: #5555bb; }
    .mat-badge.ms { background: #f5f5f5; color: #555; }

    /* ---------- COMPARISON TABLE ENHANCEMENTS ---------- */
    .compare-section { background: #f4fffa; }
    .compare-table-wrap {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    .compare-table-wrap table { margin: 0; }
    .compare-table-wrap thead th {
      padding: 18px 20px;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
    }
    .compare-table-wrap thead th:nth-child(2) {
      background: linear-gradient(135deg, #00A878 0%, #007a59 100%) !important;
      color: white !important;
    }
    .compare-table-wrap thead th:nth-child(3) {
      background: #8ca09a !important;
      color: white !important;
    }
    .compare-table-wrap tbody td {
      padding: 14px 20px;
      font-size: 0.88rem;
      vertical-align: middle;
      border-color: #e8f0ed;
    }
    .compare-table-wrap tbody td:first-child {
      font-weight: 700; color: #1E2A23; background: #f9fcfa;
    }
    .compare-table-wrap tbody td:nth-child(2) {
      background: rgba(0,168,120,0.05);
      color: #007a59;
      font-weight: 600;
    }
    .compare-table-wrap tbody tr:hover td { filter: brightness(0.97); }
    .check-icon { color: #00A878; font-weight: 900; }
    .cross-icon { color: #aaa; }
    .winner-pill {
      display: inline-block;
      background: linear-gradient(90deg, #00A878, #008FA3);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 30px;
      margin-left: 6px;
      vertical-align: middle;
    }

    /* ---------- TOLERANCE SPEC CARDS ---------- */
    .spec-section { background: #1E2A23; }
    .spec-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .spec-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #00A878, #FFD166);
    }
    .spec-card:hover {
      background: rgba(0,168,120,0.12);
      transform: translateY(-6px);
      border-color: rgba(0,168,120,0.4);
    }
    .spec-value {
      font-size: 2rem;
      font-weight: 800;
      color: #00A878;
      line-height: 1;
      margin-bottom: 6px;
      font-family: 'Montserrat', sans-serif;
    }
    .spec-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .spec-sub {
      font-size: 1rem;
      color: #FFD166;
      font-weight: 600;
      margin-top: 8px;
    }
    .spec-icon {
      font-size: 2rem;
      color: rgba(255,255,255,0.2);
      margin-bottom: 12px;
    }

    /* ---------- APPLICATION EXAMPLES TABLE ---------- */
    .app-section { background: #fff; }
    .app-table-wrap {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    .app-table-wrap table { margin: 0; }
    .app-table-wrap thead th {
      background: linear-gradient(135deg, #1E2A23, #2d3e35);
      color: white;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 16px 18px;
      border: none;
    }
    .app-table-wrap tbody td {
      padding: 13px 18px;
      font-size: 0.85rem;
      color: #45504C;
      border-color: #e8f0ed;
      vertical-align: middle;
    }
    .app-table-wrap tbody tr:nth-child(even) { background: #f9fcfa; }
    .app-table-wrap tbody tr:hover { background: #e8f8f2; }
    .app-table-wrap tbody td:first-child { font-weight: 700; color: #1E2A23; }
    .industry-tag {
      display: inline-block;
      padding: 3px 11px;
      border-radius: 30px;
      font-size: 0.72rem;
      font-weight: 700;
      background: #e0faf2;
      color: #00A878;
      border: 1px solid #b0e8d4;
    }

    /* ---------- WHY INDIA SECTION ---------- */
    .india-section {
      background: linear-gradient(135deg, #00A878 0%, #008FA3 100%);
      position: relative;
      overflow: hidden;
    }
    .india-section::before {
      content: '🇮🇳';
      position: absolute;
      font-size: 200px;
      right: -30px; bottom: -40px;
      opacity: 0.07;
      line-height: 1;
    }
    .india-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      padding: 24px 20px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }
    .india-card:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-5px);
    }
    .india-card h5 { color: #FFD166; font-weight: 700; margin-bottom: 8px; }
    .india-card p { color: rgba(255,255,255,0.92); font-size: 0.88rem; line-height: 1.6; margin: 0; }
    .india-card .card-icon {
      font-size: 2rem; margin-bottom: 12px; color: rgba(255,255,255,0.7);
    }

    /* ---------- SURFACE FINISH TABLE ---------- */
    .finish-row-good { background: #f0fff8 !important; }
    .finish-row-excellent { background: #e0faf2 !important; }
    .finish-badge-good { color: #00A878; font-weight: 700; }
    .finish-badge-excellent { color: #007a59; font-weight: 800; }

    /* ---------- STICKY QUOTE BAR (Mobile) ---------- */
    .sticky-quote-bar {
      display: none;
      position: fixed;
      bottom: 70px;
      left: 0; right: 0;
      background: linear-gradient(90deg, #00A878, #008FA3);
      z-index: 998;
      padding: 12px 20px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    @media (max-width: 767px) {
      .sticky-quote-bar { display: flex; gap: 10px; align-items: center; justify-content: center; }
    }
    .sticky-quote-bar a {
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      flex: 1;
      text-align: center;
      padding: 8px 12px;
      border-radius: 8px;
    }
    .sticky-quote-bar a:first-child { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
    .sticky-quote-bar a:last-child { background: #25D366; }

    /* ---------- INLINE BREADCRUMB ---------- */
    .breadcrumb-bar {
      background: #f4fffa;
      border-bottom: 1px solid #e0ede8;
      padding: 10px 0;
    }
    .breadcrumb-bar .breadcrumb {
      margin: 0; background: transparent; padding: 0;
      font-size: 0.82rem;
    }
    .breadcrumb-bar .breadcrumb-item a { color: #00A878; text-decoration: none; }
    .breadcrumb-bar .breadcrumb-item.active { color: #6D7A76; }

    /* ---------- TRUST BADGE ENHANCEMENTS ---------- */
    .trust-badge {
      height: 110px;
      background: linear-gradient(145deg, #ffffff, #f2f6fb);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 14px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
    }
    .badge-title { font-size: 20px; font-weight: 700; letter-spacing: 1px; color: #00A878; }
    .badge-sub { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; color: #555; margin-top: 4px; }
    .trust-badge:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(0,0,0,0.12); }

    /* ---------- GENERAL FACILITY / STAT / CAPABILITY (keep existing) ---------- */
    .facility-image-card {
      position: relative; overflow: hidden; border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1); margin-bottom: 20px;
    }
    .facility-image-card img {
      width: 100%; height: 280px; object-fit: cover; transition: transform 0.4s ease;
    }
    .facility-image-card:hover img { transform: scale(1.05); }
    .image-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      color: white; padding: 15px; font-weight: 600; font-size: 0.9rem;
    }
    .stat-number { font-size: 3rem; font-weight: 800; line-height: 1; }
    .stat-label { font-size: 1rem; opacity: 0.9; }

    /* ---------- SECTION COMMON ---------- */
    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, #00A878 0%, #007a59 100%);
      color: white; padding: 8px 24px; border-radius: 50px;
      font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0,168,120,0.3);
    }
    .section-title { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 700; color: #1E2A23; margin-top: 15px; }
    .title-underline {
      width: 80px; height: 4px;
      background: linear-gradient(90deg, #00A878 0%, #FFD166 100%);
      margin: 20px auto; border-radius: 2px;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 991px) {
      .process-steps::before { display: none; }
      .spec-value { font-size: 1.6rem; }
    }
    @media (max-width: 767px) {
      .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        overflow: visible;
      }
      .process-steps::before { display: none; }
      .step-circle { width: 72px; height: 72px; }
      .section-title { font-size: 1.6rem; }
      .spec-value { font-size: 1.5rem; }
      .material-table-wrap thead th,
      .app-table-wrap thead th,
      .compare-table-wrap thead th { font-size: 0.78rem; padding: 12px 10px; }
      .material-table-wrap tbody td,
      .app-table-wrap tbody td,
      .compare-table-wrap tbody td { font-size: 0.78rem; padding: 10px; }
      .facility-image-card img { height: 200px; }
      .stat-number { font-size: 2rem; }
      section.py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    }
    @media (max-width: 575px) {
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .stat-number { font-size: 1.75rem; }
      .facility-image-card img { height: 180px; }
    }
  

    @media (max-width: 767px) {
  .sticky-quote-bar {
    display: none !important;
  }
}

/* ===================================== */
/* TRAUB PAGE – THEMED INLINE LINKS     */
/* ===================================== */

.traub-info-card a,
.process-section a,
.material-section a,
.compare-section a,
.app-section a,
.faq-section a,
.india-section a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 168, 120, 0.35);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.traub-info-card a:hover,
.process-section a:hover,
.material-section a:hover,
.compare-section a:hover,
.app-section a:hover,
.faq-section a:hover,
.india-section a:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}
/* ===================================== */
/* TABLE LINK FIX                       */
/* ===================================== */

.table a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(0,168,120,0.4);
}

.table a:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

/* ===================================== */
/* FOOTER AUTHORITY LINKS               */
/* ===================================== */

.footer .small a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s ease;
}

.footer .small a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.industry-card h5 a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.industry-card h5 a:hover {
    color: var(--primary);
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}



