.elementor-3063 .elementor-element.elementor-element-b2f860a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3063 .elementor-element.elementor-element-b2f860a:not(.elementor-motion-effects-element-type-background), .elementor-3063 .elementor-element.elementor-element-b2f860a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(184deg, #FAFAFA 70%, var( --e-global-color-accent ) 71%);}.elementor-3063 .elementor-element.elementor-element-2eee62f{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3063 .elementor-element.elementor-element-c77e82b{text-align:center;}.elementor-widget-breadcrumbs{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-3063 .elementor-element.elementor-element-69c2a10{font-family:"Helvetica", Sans-serif;font-weight:400;color:var( --e-global-color-secondary );}.elementor-3063 .elementor-element.elementor-element-d2f9dd2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:50px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for container, class: .elementor-element-d2f9dd2 */.material-science-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.tabs-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tabs-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tabs-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tab-button {
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.tab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #48a6a6;
    color: #ffffff;
}

.tab-button.active {
    background: #48a6a6;
    color: white;
    border-color: #48a6a6;
    box-shadow: 0 5px 15px rgba(72, 166, 166, 0.3);
}

.tab-button i {
    font-size: 1.2rem;
}

.tabs-content {
    margin-top: 30px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== COMMON STYLES FOR ALL SECTIONS ===== */
.service-rubber-plastics,
.textile-section,
.paint-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

/* Section Container Common */
.service-rubber-plastics .section-container,
.textile-section .section-container,
.paint-section .section-container {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-rubber-plastics .section-container:hover,
.textile-section .section-container:hover,
.paint-section .section-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Grids Common */
.service-rubber-plastics .clients-grid,
.textile-section .clients-grid,
.paint-section .clients-grid,
.service-rubber-plastics .services-grid,
.textile-section .services-grid,
.paint-section .services-grid,
.textile-section .testing-grid,
.textile-section .applications-grid,
.paint-section .capabilities-grid,
.paint-section .instrument-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Grid Items Common */
.service-rubber-plastics .client-item,
.textile-section .client-item,
.paint-section .client-item,
.service-rubber-plastics .service-item,
.textile-section .service-item,
.paint-section .service-item,
.textile-section .testing-item,
.textile-section .application-item,
.paint-section .capability-item,
.paint-section .instrument-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Image Container Common */
.service-rubber-plastics .image-container,
.textile-section .image-container,
.paint-section .image-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-rubber-plastics .image-container img,
.textile-section .image-container img,
.paint-section .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-rubber-plastics .image-container img:hover,
.textile-section .image-container img:hover,
.paint-section .image-container img:hover {
    transform: scale(1.03);
}

/* ===== RUBBER & PLASTICS SPECIFIC STYLES ===== */
.service-rubber-plastics .rubber-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    border-radius: 10px;
    border-left: 5px solid #48a6a6;
    border-right: 5px solid #48a6a6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-rubber-plastics .rubber-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-rubber-plastics .rubber-header .tagline {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
    max-width: 800px;
    margin: 20px auto;
}

/* Rubber Section Headings */
.service-rubber-plastics .section-container h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #48a6a6;
    font-weight: 600;
}

.service-rubber-plastics .section-container h2 i {
    margin-right: 10px;
    color: #48a6a6;
}

.service-rubber-plastics .section-container h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-rubber-plastics .section-container h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Rubber Testing Category */
.service-rubber-plastics .testing-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.service-rubber-plastics .testing-category h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-rubber-plastics .testing-category ul {
    margin-left: 15px;
}

.service-rubber-plastics .testing-category li {
    margin-bottom: 5px;
}

/* Rubber Grid Items */
.service-rubber-plastics .client-item,
.service-rubber-plastics .service-item {
    border-left: 4px solid #48a6a6;
}

.service-rubber-plastics .client-item:hover,
.service-rubber-plastics .service-item:hover {
    background: #e8f4fc;
    transform: translateX(5px);
}

/* Category Icon */
.service-rubber-plastics .category-icon {
    font-size: 1.2em;
    margin-right: 8px;
    color: #48a6a6;
}

/* Rubber Images */
.service-rubber-plastics .lab-image {
    max-height: 200px;
    object-fit: cover;
}

.service-rubber-plastics .product-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Rubber Contact Section */
.service-rubber-plastics .contact-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #48a6a6;
}

.service-rubber-plastics .contact-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #48a6a6;
}

.service-rubber-plastics .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
}

.service-rubber-plastics .contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: #48a6a6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-rubber-plastics .contact-button:hover {
    background: #3a8a8a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(72, 166, 166, 0.3);
}

.service-rubber-plastics .contact-button i {
    margin-right: 8px;
}

/* ===== TEXTILE & PAPER SPECIFIC STYLES ===== */
.textile-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.textile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f4fc 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 5px solid #3498db;
    border-right: 5px solid #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.textile-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.textile-header h3 {
    color: #7f8c8d;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Textile Grid Items */
.textile-section .client-item,
.textile-section .service-item,
.textile-section .testing-item,
.textile-section .application-item {
    border-left: 4px solid #3498db;
}

.textile-section .application-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textile-section .application-item:hover {
    background: #e8f4fc;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.textile-section .application-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.textile-section .application-item strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Textile Testing Grid */
.textile-section .testing-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.textile-section .testing-item {
    text-align: center;
    border: 1px solid #e1e8ed;
}

.textile-section .testing-item:hover {
    background: #e8f4fc;
    transform: translateY(-3px);
}

.textile-section .applications-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Textile Images */
.textile-section .textile-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* ===== PAINT & INK SPECIFIC STYLES ===== */
.paint-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.paint-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    border-right: 5px solid #f39c12;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.paint-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.paint-header .tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
}

/* Paint Capabilities Grid */
.paint-section .capabilities-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.paint-section .capability-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.paint-section .capability-item:hover {
    background: #fff8e1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.paint-section .capability-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.paint-section .capability-item h4 i {
    margin-right: 10px;
    color: #f39c12;
}

.paint-section .capability-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Paint Instrument Grid */
.paint-section .instrument-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.paint-section .instrument-item {
    text-align: center;
    border: 1px solid #e1e8ed;
    font-weight: 500;
}

.paint-section .instrument-item:hover {
    background: #e8f4fc;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Paint Images */
.paint-section .paint-image,
.paint-section .final-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Paint Contact Section */
.paint-section .contact-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #f39c12;
}

.paint-section .contact-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.paint-section .contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.paint-section .contact-button:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.paint-section .contact-button i {
    margin-right: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .material-science-tabs {
        padding: 15px;
    }
    
    .tabs-header h1 {
        font-size: 2rem;
    }
    
    .tabs-header .subtitle {
        font-size: 1rem;
    }
    
    .tabs-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
    
    .service-rubber-plastics .rubber-header h2 {
        font-size: 1.8rem;
    }
    
    .service-rubber-plastics .rubber-header .tagline {
        font-size: 1.1rem;
    }
    
    .service-rubber-plastics .section-container,
    .textile-section .section-container,
    .paint-section .section-container {
        padding: 20px;
    }
    
    .service-rubber-plastics .section-container h2 {
        font-size: 1.5rem;
    }
    
    .service-rubber-plastics .section-container h3 {
        font-size: 1.3rem;
    }
    
    /* Grid Responsive */
    .service-rubber-plastics .clients-grid,
    .textile-section .clients-grid,
    .paint-section .clients-grid,
    .service-rubber-plastics .services-grid,
    .textile-section .services-grid,
    .paint-section .services-grid,
    .textile-section .testing-grid,
    .textile-section .applications-grid,
    .paint-section .capabilities-grid,
    .paint-section .instrument-grid {
        grid-template-columns: 1fr;
    }
    
    /* Image Container Responsive */
    .service-rubber-plastics .image-container,
    .textile-section .image-container,
    .paint-section .image-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }
    
    .service-rubber-plastics .image-container img,
    .textile-section .image-container img,
    .paint-section .image-container img {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* Header Responsive */
    .textile-header h2,
    .paint-header h2 {
        font-size: 1.8rem;
    }
    
    .textile-header h3,
    .paint-header .tagline {
        font-size: 1.1rem;
    }
    
    /* Card Items Responsive */
    .textile-section .application-item,
    .paint-section .capability-item {
        min-height: auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .tabs-header h1 {
        font-size: 1.7rem;
    }
    
    .service-rubber-plastics .rubber-header h2 {
        font-size: 1.6rem;
    }
    
    .service-rubber-plastics .section-container h2 {
        font-size: 1.3rem;
    }
    
    .service-rubber-plastics .section-container h3 {
        font-size: 1.2rem;
    }
    
    .service-rubber-plastics .contact-button,
    .paint-section .contact-button {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .textile-header,
    .paint-header {
        padding: 20px;
    }
    
    .textile-header h2,
    .paint-header h2 {
        font-size: 1.6rem;
    }
}

/* ===== COMMON ELEMENTS ===== */
.service-rubber-plastics .section-container p,
.textile-section .section-container p,
.paint-section .section-container p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.service-rubber-plastics .section-container strong,
.textile-section .section-container strong,
.paint-section .section-container strong {
    color: #2c3e50;
    font-weight: 600;
}

.service-rubber-plastics .section-container ul,
.service-rubber-plastics .section-container ol,
.textile-section .section-container ul,
.textile-section .section-container ol,
.paint-section .section-container ul,
.paint-section .section-container ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-rubber-plastics .section-container li,
.textile-section .section-container li,
.paint-section .section-container li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Links */
a {
    color: #48a6a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3a8a8a;
    text-decoration: underline;
}/* End custom CSS */