/* Css for , Version=1768183010 */
 
        /* Scoped styles to prevent conflicts with host website */
        .xt-wrapper {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f7f6;
            color: #333;
            padding: 20px 0;
        }
        .xt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .xt-wrapper h1, .xt-wrapper h2 {
            color: #004d40;
            text-align: center;
            margin-bottom: 40px;
        }
        .xt-wrapper h2 {
            border-bottom: 3px solid #b2dfdb;
            padding-bottom: 15px;
        }
        /* Data Dashboard - Adjusted for 4-in-a-row */
        .xt-data-dashboard {
            display: grid;
            /* Forces 4 equal columns on desktop */
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px;
            margin-bottom: 50px;
        }
        /* Mobile adjustment for the 4 cards */
        @media (max-width: 992px) {
            .xt-data-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .xt-data-dashboard {
                grid-template-columns: 1fr;
            }
        }
        .xt-data-card {
            background: linear-gradient(135deg, #00796b, #004d40);
            color: white;
            padding: 25px 15px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .xt-data-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.1);
            clip-path: circle(0% at 50% 50%);
            transition: clip-path 0.5s ease;
        }
        .xt-data-card:hover::before {
            clip-path: circle(140% at 50% 50%);
        }
        .xt-data-card .xt-counter {
            font-size: 2.8em; /* Slightly smaller to fit 4 in a row better */
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .xt-data-card .xt-label {
            font-size: 0.95em;
            opacity: 0.9;
            letter-spacing: 0.5px;
            line-height: 1.2;
            display: block;
        }
        /* Section Boxes */
        .xt-section-box {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease-in-out;
            border-left: 5px solid #00796b;
        }
        /* Tech Cards */
        .xt-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }
        .xt-tech-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            border-top: 5px solid #00796b;
            height: 100%;
        }
        .xt-tech-card h4 {
            color: #004d40;
            font-size: 1.3em;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        /* Capacity Grid */
        .xt-capacity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .xt-capacity-item {
            padding: 15px 10px;
            background-color: #f0f8ff;
            border-radius: 6px;
            border: 1px solid #b2dfdb;
            text-align: center;
        }
        .xt-capacity-item .xt-prod-name {
            font-weight: bold;
            color: #004d40;
            display: block;
        }
        .xt-capacity-item .xt-prod-val {
            font-size: 1.4em;
            color: #00796b;
            font-weight: bold;
        }
        /* Timeline */
        .xt-timeline {
            position: relative;
            padding: 20px 0;
            list-style: none;
        }
        .xt-timeline::before {
            content: '';
            position: absolute;
            left: 50%; top: 0; bottom: 0;
            width: 4px; background: #00796b;
            transform: translateX(-50%);
        }
        .xt-timeline-item {
            position: relative;
            width: 50%;
            padding: 10px 0;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .xt-timeline-item:nth-child(odd) {
            left: 0; padding-right: 40px; text-align: right;
            transform: translateX(-100%);
        }
        .xt-timeline-item:nth-child(even) {
            left: 50%; padding-left: 40px; text-align: left;
            transform: translateX(100%);
        }
        .xt-timeline-item.item-visible {
            opacity: 1;
            transform: translateX(0);
        }
        .xt-timeline-item::before {
            content: '•';
            position: absolute;
            top: 50%; width: 20px; height: 20px;
            background: #ffffff; border: 4px solid #004d40;
            border-radius: 50%; transform: translateY(-50%);
            z-index: 10; text-align: center;
        }
        .xt-timeline-item:nth-child(odd)::before { right: -10px; }
        .xt-timeline-item:nth-child(even)::before { left: -10px; }
        .xt-highlight {
            text-align: center;
            padding: 40px;
            background-color: #e0f2f1;
            border-radius: 10px;
            margin: 30px 0;
        }
        .xt-highlight h3 { color: #d84315; }
        .xt-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out, transform 0.8s ease-out;
        }
        .xt-fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .xt-important { color: #d84315; font-weight: bold; }
    