* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ebebf8;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    /* height of your header */
}

/* Metinox Header Wrapper */
.metinox-header-wrapper {
    position: relative;
    width: 100%;
}

/* Metinox Main Header */
.metinox-main-header {
    background: white;
    padding: 0;
    box-shadow: 2px 2px 6px #9e9b9b87;
    position: relative;
}

i.fas.fa-phone-alt {
    transform: rotate(105deg);
}

/* Metinox Top Contact Bar */
.metinox-topbar {
    background: transparent;
    position: relative;
}

.metinox-topbar-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.metinox-contact-info-pill {
    background: #001a3d;
    padding: 10px 0px 10px 40px;
    border-radius: 30px 0 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    width: 55.5%;
}

.metinox-contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.metinox-contact-link:hover {
    opacity: 0.8;
}

.metinox-contact-link i {
    font-size: 14px;
}

.metinox-contact-divider {
    color: white;
    font-weight: 300;
}

.metinox-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Metinox Logo Section */
.metinox-logo-wrapper {
    display: flex;
    align-items: center;
}

.metinox-logo-wrapper img {
    padding: 10px;
    height: 65px;
    width: auto;
    display: block;
    transform: translate(0px, -16px) scale(1.5);
}

/* Metinox Navigation Container */
.metinox-nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.metinox-primary-nav {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.metinox-nav-item {
    position: relative;
}

.metinox-nav-link {
    color: #001a3d;
    text-decoration: none;
    font-weight: 500;
    font-size: 14.5px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.metinox-nav-link:hover {
    opacity: 0.8;
}

.metinox-nav-link i {
    font-size: 12px;
}

/* Metinox Dropdown Menu */
.metinox-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.metinox-nav-item:hover .metinox-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.metinox-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.metinox-dropdown-item:hover {
    background: #f5f5f5;
    color: #003d82;
}

/* Metinox Contact Button */
.metinox-contact-button {
    background: linear-gradient(135deg, #001a3d 0%, #2e549e 100%);
    color: #ffffff;
    padding: 5px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.metinox-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #e4f1ff;
}

.metinox-contact-button img {
    width: 34px;
    height: 34px;
}

.metinox-contact-icon-placeholder {
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #666;
}

/* Metinox Mobile Menu Toggle */
.metinox-mobile-toggle {
    display: none;
    background: white;
    border: none;
    color: #003d82;
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* Metinox Responsive Design */
@media (max-width: 1200px) {

    .metinox-header-container,
    .metinox-topbar-container {
        padding: 0 30px;
    }

    .metinox-primary-nav {
        gap: 25px;
    }

    .metinox-nav-container {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .metinox-topbar {
        padding: 10px 0 5px 0;
    }

    .metinox-topbar-container {
        padding: 0 20px;
    }

    .metinox-contact-info-pill {
        font-size: 11px;
        gap: 15px;
        padding: 8px 20px;
    }

    .metinox-mobile-toggle {
        display: block;
    }

    .metinox-nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0036A6;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        gap: 20px;
    }

    .metinox-nav-container.metinox-menu-active {
        display: flex;
    }

    .metinox-primary-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .metinox-nav-item {
        width: 100%;
        text-align: center;
    }

    .metinox-nav-link {
        justify-content: center;
    }

    .metinox-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        display: none;
    }

    .metinox-nav-item.metinox-dropdown-active .metinox-dropdown-menu {
        display: block;
    }

    .metinox-contact-button {
        width: 100%;
        justify-content: center;
    }

    .metinox-header-container {
        position: relative;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .metinox-topbar-container {
        justify-content: center;
    }

    .metinox-contact-info-pill {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 20px;
    }

    .metinox-contact-divider {
        display: none;
    }

    .metinox-logo-wrapper {
        padding: 8px 15px;
    }

    .metinox-logo-wrapper img,
    .metinox-logo-placeholder {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .metinox-contact-info-pill {
        font-size: 10px;
        padding: 8px 15px;
    }

    .metinox-contact-link {
        gap: 5px;
    }

    .metinox-contact-link i {
        font-size: 12px;
    }

    .metinox-logo-placeholder {
        width: 100px;
        height: 45px;
        font-size: 10px;
    }

    .metinox-nav-link {
        font-size: 14px;
    }

    .metinox-contact-button {
        font-size: 13px;
        padding: 10px 25px;
    }
}

/* Metinox Hero Section */
.metinox-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    background: url('/media/images/product-hero-background.webp') no-repeat center center/cover;
}

/* Background Image Layer */
.metinox-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay Layer */
.metinox-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 41, 71, 0.92) 0%, rgba(45, 74, 115, 0.88) 100%);
    z-index: 2;
}

/* Pattern Overlay */
.metinox-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .03) 35px, rgba(255, 255, 255, .03) 70px);
    z-index: 3;
}

/* Content Container */
.metinox-hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: metinoxFadeInUp 0.8s ease-out;
}

/* Hero Title */
.metinox-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: metinoxFadeInUp 0.8s ease-out 0.2s both;
}

/* Breadcrumb Navigation */
.metinox-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    animation: metinoxFadeInUp 0.8s ease-out 0.4s both;
}

.metinox-breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.metinox-breadcrumb-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.metinox-breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.metinox-breadcrumb-link:hover::after {
    width: 100%;
}

.metinox-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.metinox-breadcrumb-current {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

/* CTA Button */
.metinox-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4e4f7 0%, #ffffff 100%);
    color: #2F559E;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 228, 247, 0.3);
    transition: all 0.3s ease;
    animation: metinoxFadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.metinox-hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 41, 71, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.metinox-hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.metinox-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 228, 247, 0.5);
}

.metinox-hero-cta span {
    position: relative;
    z-index: 1;
}

.metinox-hero-cta i {
    position: relative;
    z-index: 1;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.metinox-hero-cta:hover i {
    transform: rotate(90deg);
}

/* Animations */
@keyframes metinoxFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metinoxFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Decorative Elements */
.metinox-hero-deco {
    position: absolute;
    z-index: 3;
    opacity: 0.15;
    animation: metinoxFloat 6s ease-in-out infinite;
}

.metinox-hero-deco-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    animation-delay: 0s;
}

.metinox-hero-deco-2 {
    top: 60%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 50%;
    animation-delay: 2s;
}

.metinox-hero-deco-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    border: 3px solid white;
    border-radius: 50%;
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .metinox-hero-section {
        min-height: 400px;
        padding: 60px 20px;
    }

    .metinox-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .metinox-breadcrumb {
        margin-bottom: 30px;
        gap: 10px;
    }

    .metinox-breadcrumb-link,
    .metinox-breadcrumb-current {
        font-size: 14px;
    }

    .metinox-hero-cta {
        padding: 14px 35px;
        font-size: 15px;
    }

    .metinox-hero-deco {
        opacity: 0.08;
    }

    .metinox-hero-deco-1 {
        width: 60px;
        height: 60px;
    }

    .metinox-hero-deco-2 {
        width: 70px;
        height: 70px;
    }

    .metinox-hero-deco-3 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .metinox-hero-section {
        min-height: 350px;
        padding: 50px 15px;
    }

    .metinox-hero-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .metinox-breadcrumb {
        flex-wrap: wrap;
        margin-bottom: 25px;
        gap: 8px;
    }

    .metinox-breadcrumb-link,
    .metinox-breadcrumb-current {
        font-size: 13px;
    }

    .metinox-breadcrumb-separator {
        font-size: 9px;
    }

    .metinox-hero-cta {
        padding: 12px 30px;
        font-size: 14px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .metinox-hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .metinox-breadcrumb-link,
    .metinox-breadcrumb-current {
        font-size: 12px;
    }

    .metinox-breadcrumb-separator {
        font-size: 8px;
    }

    .metinox-hero-cta {
        padding: 11px 25px;
        font-size: 13px;
    }

    .metinox-hero-deco {
        display: none;
    }
}


.toc-container {
    background: linear-gradient(76deg, #e0eafc 0%, #ffffff 100%);
    border: 2px solid #bed3eb;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-title {
    margin-top: 0px !important;
    color: #4a7fd6;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.toc-image {
    width: 90px;
    height: auto;
    opacity: 0.9;
    transform: translate(-20px, -10px) scale(2.5) rotate(5deg);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    transition: all 0.3s ease;
}

.toc-item:last-child {
    border-bottom: none;
}

.toc-link {
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 0.7;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.toc-link::before {
    content: '•';
    color: #4a7fd6;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: rgba(74, 127, 214, 0.1);
    color: #4a7fd6;
    transform: translateX(8px);
    padding-left: 10px;
}

a.toc-link {
    padding: 5px 0;
}


.quote-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #4a7fd6 0%, #3d6bb8 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 127, 214, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quote-button:hover::before {
    left: 100%;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 127, 214, 0.5);
    background: linear-gradient(135deg, #5a8fe6 0%, #4d7bc8 100%);
}

.quote-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(74, 127, 214, 0.4);
}

.button-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.quote-button:hover .button-icon {
    transform: rotate(15deg) scale(1.1);
}

/* ==================== METINOX PRODUCT INFO SECTION STYLES ==================== */
img.metinox-gallery-item.metinox-gallery-left {
    width: 100%;
}

.metinox-product-info-section {
    padding: 60px 0;
    background: #e8ecf3;
}

.metinox-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 70% 30%;
    ;
    gap: 40px;
    align-items: start;
}

/* Left Content - 60% */
.metinox-info-left {
    display: flex;
    flex-direction: column;
}

/* Image Gallery */
.metinox-image-gallery {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.metinox-gallery-item {
    position: relative;
    overflow: hidden;
}

.metinox-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.metinox-gallery-left {
    border-radius: 20px 0 0 20px;
}

.metinox-gallery-right {
    border-radius: 0 20px 20px 0;
}

/* Curved Divider */
.metinox-curved-divider {
    position: absolute;
    left: 48%;
    top: 0;
    bottom: 0;
    width: 80px;
    background: #30549E;
    clip-path: ellipse(50% 100% at 0% 50%);
    z-index: 1;
    transform: translateX(-50%);
}

/* Content Text */
.metinox-info-content {
    background: transparent;
}

.metinox-info-title {
    font-size: 32px;
    font-weight: 700;
    color: #30549E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.metinox-info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.metinox-text-link {
    color: #30549E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.metinox-text-link:hover {
    color: #0036A6;
    text-decoration: underline;
}

/* Right Form - 40% */
.metinox-info-right {
    top: 20px;
}

.metinox-enquire-card {
    background: linear-gradient(276deg, #deecfd 0%, #f2f6fd 100%);
    border-radius: 20px;
    border: 1px solid #87a9ee61;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgb(123 149 203 / 9%);
}

.metinox-enquire-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #30549E;
    margin: 0 0 8px 0;
}

.metinox-enquire-title p {
    font-size: 15px;
    color: #555;
    margin: 0 0 25px 0;
}

/* Form Styles */
.metinox-quick-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metinox-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metinox-form-col,
.metinox-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metinox-quick-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.metinox-quick-form input,
.metinox-quick-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c5d4e8;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.metinox-quick-form input:focus,
.metinox-quick-form textarea:focus {
    outline: none;
    border-color: #30549E;
    box-shadow: 0 0 0 3px rgba(48, 84, 158, 0.1);
}

.metinox-quick-form textarea {
    resize: vertical;
    min-height: 100px;
}

.metinox-form-submit {
    background: linear-gradient(135deg, #30549E 0%, #0036A6 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.metinox-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 84, 158, 0.3);
}

.metinox-privacy-note {
    font-size: 13px;
    color: #666;
    text-align: center;
}

.metinox-privacy-note em {
    font-style: italic;
}

/* Math Captcha */
.metinox-captcha-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.metinox-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.metinox-captcha-question {
    font-weight: 700;
    color: #30549E;
    background: #f0f4fa;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.metinox-captcha-input {
    max-width: 140px;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.metinox-captcha-input:focus {
    outline: none;
    border-color: #30549E;
    box-shadow: 0 0 0 3px rgba(48, 84, 158, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .metinox-info-container {
        gap: 30px;
    }

    .metinox-info-title {
        font-size: 28px;
    }

    .metinox-enquire-card {
        padding: 30px 25px;
    }
}

@media (max-width: 991px) {
    .metinox-info-container {
        grid-template-columns: 1fr;
    }

    .metinox-info-right {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .metinox-image-gallery {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .metinox-product-info-section {
        padding: 20px 10px;
    }

    .metinox-info-title {
        font-size: 24px;
    }

    .metinox-info-text {
        font-size: 14px;
    }

    .metinox-enquire-title h3 {
        font-size: 24px;
    }

    .metinox-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .metinox-image-gallery {
        height: 250px;
        border-radius: 15px;
    }

    .metinox-gallery-left {
        border-radius: 15px 0 0 15px;
    }

    .metinox-gallery-right {
        border-radius: 0 15px 15px 0;
    }
}

@media (max-width: 480px) {
    .metinox-info-title {
        font-size: 20px;
    }

    .metinox-enquire-card {
        padding: 25px 20px;
    }

    .metinox-enquire-title h3 {
        font-size: 22px;
    }

    .metinox-image-gallery {
        height: 200px;
        grid-template-columns: 1fr;
    }

    .metinox-gallery-right {
        display: none;
    }

    .metinox-gallery-left {
        border-radius: 15px;
    }

    .metinox-curved-divider {
        display: none;
    }
}

/* ==================== END METINOX PRODUCT INFO SECTION STYLES ==================== */


/* ==================== METINOX GLOBAL TYPOGRAPHY STANDARDS ==================== */

/* Main Content Area Typography */
.metinox-info-left h2 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #30549E;
    line-height: 1.3;
    margin-bottom: 10px;
}

.metinox-info-left h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2F559E;
    margin-bottom: 10px;
    margin-top: 25px;
    line-height: 1.4;
}

.metinox-info-left h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-top: 25px;
    line-height: 1.4;
}

.metinox-info-left h5 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 1.5;
}

.metinox-info-left h6 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    margin-top: 18px;
    line-height: 1.5;
}

.metinox-info-left p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    font-weight: 450;
}

a.quote-button span {
    color: white;
}

a.quote-button {
    width: 24%;
    margin-bottom: 30px;
}

/* Links within content */
.metinox-info-left a {
    color: #30549E;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s ease;
}

.metinox-info-left ul li,
.metinox-info-left ol li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.metinox-info-left ul li:last-child,
.metinox-info-left ol li:last-child {
    margin-bottom: 0;
}

/* Strong and emphasis */
.metinox-info-left strong,
.metinox-info-left b {
    font-weight: 700;
    color: #2F559E;
}

.metinox-info-left em,
.metinox-info-left i {
    font-style: italic;
}

/* Blockquotes */
.metinox-info-left blockquote {
    border-left: 4px solid #30549E;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.metinox-info-left blockquote p {
    margin-bottom: 10px;
}

/* Tables */
.metinox-info-left table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.metinox-info-left table thead {
    background: linear-gradient(135deg, #30549E 0%, #0036A6 100%);
}

.metinox-info-left table thead th {
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 20px;
    text-align: left;
}

.metinox-info-left table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.metinox-info-left table tbody tr:hover {
    background: #f8f9fa;
}

.metinox-info-left table tbody td {
    border-right: 1px solid #e9e9e9 !important;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    font-weight: 450;
}

/* Code blocks */
.metinox-info-left code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #c7254e;
}

.metinox-info-left pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.metinox-info-left pre code {
    background: transparent;
    padding: 0;
    color: #333;
}

/* Horizontal Rule */
.metinox-info-left hr {
    border: none;
    border-top: 2px solid #e9ecef;
    margin: 30px 0;
}

/* Responsive Typography */
@media (max-width: 991px) {
    .metinox-info-left h2 {
        font-size: 28px;
    }

    .metinox-info-left h3 {
        font-size: 24px;
    }

    .metinox-info-left h4 {
        font-size: 20px;
    }

    .metinox-info-left h5 {
        font-size: 17px;
    }

    .metinox-info-left h6 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .metinox-info-left h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .metinox-info-left h3 {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .metinox-info-left h4 {
        font-size: 19px;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .metinox-info-left h5 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 18px;
    }

    .metinox-info-left h6 {
        font-size: 15px;
        margin-bottom: 8px;
        margin-top: 15px;
    }

    .metinox-info-left p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .metinox-info-left ul li,
    .metinox-info-left ol li {
        font-size: 14px;
    }

    .metinox-info-left table thead th,
    .metinox-info-left table tbody td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .metinox-info-left h2 {
        font-size: 22px;
    }

    .metinox-info-left h3 {
        font-size: 20px;
    }

    .metinox-info-left h4 {
        font-size: 18px;
    }

    .metinox-info-left h5 {
        font-size: 16px;
    }

    .metinox-info-left h6 {
        font-size: 14px;
    }

    .metinox-info-left p {
        font-size: 13px;
    }

    .metinox-info-left ul,
    .metinox-info-left ol {
        padding-left: 20px;
    }

    .metinox-info-left ul li,
    .metinox-info-left ol li {
        font-size: 13px;
    }
}

section.metinox-product-info-section ul {
    padding-left: 20px;
}


.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 10px 0;
}

/* Card */
.app-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 5px;
    padding: 15px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e6e9f2;
    align-items: start;
    transition: all 0.3s ease;
}

.app-item:hover {
    box-shadow: 0 10px 26px rgba(48, 84, 158, 0.15);
    transform: translateY(-2px);
}

/* Icon */
.app-item i {
    font-size: 24px;
    color: #30549e;
}

/* Title */
.app-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #30549e;
}

/* Text */
.app-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-weight: 450;
}

/* Mobile */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}


.ss304-faq-section-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 12px;
}

.ss304-faq-main-heading {
    color: #2c5aa0;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 25px 0;
    padding: 0 15px;
}

.ss304-faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss304-faq-accordion-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ss304-faq-accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ss304-faq-question-button {
    width: 100%;
    padding: 15px 25px 10px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
    font-family: 'Montserrat';
}

.ss304-faq-question-button:hover {
    background: #f8f9fb;
}

.ss304-faq-question-text {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.ss304-faq-toggle-icon {
    color: #2c5aa0;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ss304-faq-accordion-item.active .ss304-faq-toggle-icon {
    transform: rotate(180deg);
}

.ss304-faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ss304-faq-accordion-item.active .ss304-faq-answer-wrapper {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.ss304-faq-answer-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ss304-faq-question-button {
        padding: 16px 18px;
    }

    .ss304-faq-question-text {
        font-size: 15px;
    }

    .ss304-faq-toggle-icon {
        font-size: 20px;
    }
}


.ss304-related-products-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: 16px;
}

.ss304-related-products-heading {
    color: #2c5aa0;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 35px 0;
    text-align: center;
}

.ss304-related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ss304-related-product-card {
    background: white;
    border: 2px solid #e8eef5;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ss304-related-product-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #2c5aa0 0%, #4a7fd6 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ss304-related-product-card:hover::before {
    transform: scaleY(1);
}

.ss304-related-product-card:hover {
    border-color: #2c5aa0;
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.15);
}

.ss304-related-product-content {
    flex: 1;
}

.ss304-related-product-title {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ss304-related-product-card:hover .ss304-related-product-title {
    color: #2c5aa0;
}

.ss304-related-product-icon {
    color: #2c5aa0;
    font-size: 22px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ss304-related-product-card:hover .ss304-related-product-icon {
    transform: translateX(5px);
    color: #4a7fd6;

}

@media (max-width: 768px) {
    .ss304-related-products-grid {
        grid-template-columns: 1fr;
    }

    .ss304-related-products-heading {
        font-size: 26px;
    }
}

a.ss304-related-product-card {
    padding: 15px 25px 10px;
}

p.ss304-related-product-title {
    line-height: 1.3;
}



.metinox-pipes-container {
    width: 100%;
    margin: 30px auto;
    background: linear-gradient(135deg, #EEEEEE 0%, #DFEAFF 100%);
    border-radius: 24px;
    padding: 20px 0px 20px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.metinox-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.metinox-pipes-heading {
    color: #3949ab;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 0;
}

.metinox-company-intro {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 0;
}

.metinox-description-text {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0;
}

.metinox-quote-button {
    background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 73, 171, 0.3);
    display: inline-block;
}

.metinox-quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 73, 171, 0.4);
    background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
}

.metinox-image-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metinox-pipes-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .metinox-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metinox-pipes-container {
        padding: 30px;
    }

    .metinox-pipes-heading {
        font-size: 26px;
    }

    .metinox-image-block {
        order: -1;
    }

    .metinox-circle-backdrop {
        width: 220px;
        height: 220px;
    }
}

h2.metinox-pipes-heading {
    margin: 0;
    padding-bottom: 10px;
}

.metinox-footer-section {
    background: url('/media/images/footer-background.webp') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 30px;
    color: white;
}

.metinox-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.metinox-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.metinox-footer-column {
    display: flex;
    flex-direction: column;
}

.metinox-footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.metinox-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.metinox-footer-links li {
    margin-bottom: 12px;
    font-weight: 600;
}

.metinox-footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.metinox-footer-link:hover {
    color: #5c6bc0;
    transform: translateX(5px);
}

.metinox-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metinox-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.metinox-contact-icon {
    color: #87A9EE;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

.metinox-contact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.metinox-email-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.metinox-email-link:hover {
    color: #5c6bc0;
}

.metinox-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.metinox-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.metinox-sitemap-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.metinox-sitemap-link:hover {
    color: #5c6bc0;
}

@media (max-width: 992px) {
    .metinox-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .metinox-footer-section {
        padding: 40px 15px 20px;
    }

    .metinox-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metinox-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .metinox-contact-item {
        display: flex;
        gap: 8px;
    }

    .metinox-contact-icon {
        margin-top: 0;
    }
}



.metinox-cta-banner-container {
    max-width: 1270px;
    margin: 0 auto;
    margin-bottom: -60px;
}

.metinox-cta-content-wrapper {
    background: linear-gradient(135deg, #0C3DA4 0%, #30549E 100%);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.metinox-cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.metinox-cta-text-content {
    position: relative;
    z-index: 2;
}

.metinox-cta-banner-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.metinox-cta-banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.metinox-cta-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metinox-cta-pipes-image {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transform: scale(1.8) translate(-50px, 0px);
}

.metinox-cta-button-wrapper {
    position: relative;
    z-index: 2;
}

.metinox-cta-enquiry-button {
    display: inline-block;
    background: white;
    color: #1e5bb8;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-decoration: none;
}

.metinox-cta-enquiry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.metinox-cta-enquiry-button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .metinox-cta-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 30px;
        gap: 25px;
    }

    .metinox-cta-banner-description {
        max-width: 100%;
    }

    .metinox-cta-pipes-image {
        width: 180px;
    }

    .metinox-cta-button-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .metinox-cta-banner-section {
        padding: 30px 15px;
    }

    .metinox-cta-content-wrapper {
        padding: 30px 20px;
    }

    .metinox-cta-banner-title {
        font-size: 22px;
    }

    .metinox-cta-banner-description {
        font-size: 14px;
    }

    .metinox-cta-pipes-image {
        width: 150px;
    }

    .metinox-cta-enquiry-button {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .metinox-topbar {
        padding: 0;
    }

    .metinox-contact-info-pill {
        width: 100%;
    }

    .metinox-contact-info-pill {
        padding: 7px;
    }

    .metinox-topbar-container {
        padding: 0 0px;
    }

    .metinox-contact-info-pill {
        border-radius: 0;
    }

    .metinox-contact-info-pill {
        gap: 3px;
    }

    .metinox-logo-wrapper img {
        transform: translate(0px, 0px) scale(1.3);
    }

    .metinox-mobile-toggle {
        font-size: 12px;
    }

    .metinox-hero-section {
        min-height: 200px;
    }

    body {
        padding: 0 !important;
    }

    .metinox-info-container {
        max-width: 100vw;
        margin: 0 auto;
        padding: 0 0px;
        display: block;
    }

    .metinox-info-left {
        display: flex;
        max-width: 100vw;
    }

    a.quote-button {
        width: 58%;
        margin-bottom: 30px;
        text-align: center;
    }

    .metinox-info-left table {
        display: flex;
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 11px;
        overflow-x: scroll;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .toc-image {
        width: 54px;
        transform: translate(-22px, -22px) scale(2.5) rotate(5deg);
    }

    .metinox-info-content {
        padding: 0px 10px;
    }

    p.ss304-related-product-title {
        margin-bottom: 6px;
    }

    a.ss304-related-product-card {
        padding: 15px 15px 10px;
    }

    .ss304-related-products-grid {
        gap: 10px;
    }

    .metinox-footer-section {
        padding: 80px 25px 20px;
    }
}

html {
    scroll-behavior: smooth;
}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* --- Sticky header (no hero impact) --- */
:root {
    --metinox-header-h: 116px;
    /* fallback; JS will overwrite with real height */
}

body.metinox-has-sticky-header {
    padding-top: var(--metinox-header-h);
}

#header-slot.metinox-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
}

/* Make sure the header paints solid over the hero */
#header-slot.metinox-sticky {
    background: inherit;
    /* or set your header bg color here if needed */
}

/* JS will handle sticky behavior on desktop */
.metinox-enquire-card {
    position: static;
    /* override any existing sticky */
}

/* When fixed */
@media (min-width: 992px) {
    .metinox-enquire-card.is-fixed {
        position: fixed;
        z-index: 20;
    }
}

/* On mobile/tablet, do NOT stick */
@media (max-width: 991px) {
    .metinox-enquire-sticky-wrap {
        height: auto !important;
    }

    .metinox-enquire-card {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
    }
}


/* Required */
.metinox-info-right {
    position: relative;
    /* so "stopped" absolute works */
}

/* Placeholder used by JS (prevents layout jump) */
.metinox-enquire-placeholder {
    height: 0;
}

/* Fixed state */
#metinoxEnquireStickyWrap.metinox-enquire-fixed {
    position: fixed !important;
    z-index: 999;
}

/* Stop state (locks at bottom of sidebar column) */
#metinoxEnquireStickyWrap.metinox-enquire-stopped {
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Mobile: disable fixed behavior */
@media (max-width: 991px) {

    #metinoxEnquireStickyWrap.metinox-enquire-fixed,
    #metinoxEnquireStickyWrap.metinox-enquire-stopped {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: auto !important;
    }
}

/* ==================== MTX PRODUCT LISTING SECTION ==================== */
/* Reusable product listing grid for category/material pages */

/* Page Heading for Listing Pages */
.mtx-listing-page-heading {
    font-size: 32px;
    font-weight: 700;
    color: #001a3d;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Intro Paragraph Container */
.mtx-listing-intro {
    margin-bottom: 35px;
}

.mtx-listing-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    font-weight: 450;
}

/* Product Listing Grid */
.mtx-product-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

/* Product Card */
.mtx-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8eef3;
}

.mtx-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 26, 61, 0.15);
    border-color: #2c5aa0;
}

/* Product Card Image Container */
.mtx-product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f7fa;
}

.mtx-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mtx-product-card:hover .mtx-product-card-image img {
    transform: scale(1.08);
}

/* Product Card Content */
.mtx-product-card-content {
    padding: 18px 15px;
    text-align: center;
    background: #ffffff;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

/* Product Card Title */
.mtx-product-card-title {
    font-weight: 600;
    color: #355da8;
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 !important;
}

.mtx-product-card:hover .mtx-product-card-title {
    color: #2c5aa0;
}

/* Tablet Responsive - 2 columns */
@media (max-width: 991px) {
    .mtx-listing-page-heading {
        font-size: 26px;
    }

    .mtx-product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mtx-product-card-title {
        font-size: 14px;
    }

    .mtx-product-card-content {
        padding: 15px 12px;
    }
}

/* Mobile Responsive - 2 columns maintained */
@media (max-width: 576px) {
    .mtx-listing-page-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .mtx-listing-intro {
        margin-bottom: 25px;
    }

    .mtx-listing-intro p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mtx-product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mtx-product-card {
        border-radius: 10px;
    }

    .mtx-product-card:hover {
        transform: translateY(-5px);
    }

    .mtx-product-card-title {
        font-size: 13px;
    }

    .mtx-product-card-content {
        padding: 12px 10px;
    }
}

/* ==================== END MTX PRODUCT LISTING SECTION ==================== */


/* ==================== MTX HOMEPAGE STYLES ==================== */

/* Common Section Styles */
.mtx-section {
    padding: 50px 0 70px;
}

.mtx-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mtx-section-title {
    text-align: center;
    position: relative;
    font-size: 38px;
    font-weight: 700;
    color: #30549E;
    line-height: 1.3;
    margin-bottom: 30px;
}

.mtx-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #001a3d);
    margin: 15px auto 0;
    border-radius: 2px;
}

.mtx-title-left {
    text-align: left;
}

.mtx-title-left::after {
    margin: 15px 0 0;
}

/* ==================== HERO SLIDER SECTION ==================== */
.mtx-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.mtx-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mtx-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mtx-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.mtx-slide-active {
    opacity: 1;
    visibility: visible;
}

.mtx-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #001a3d;
}

.mtx-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 26, 61, 0.85) 0%, rgba(0, 26, 61, 0.5) 60%, transparent 100%);
}

.mtx-slide-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.mtx-slide-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    animation: mtxSlideUp 0.8s ease forwards;
}

.mtx-slide-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    animation: mtxSlideUp 0.8s ease 0.2s forwards;
}

.mtx-slide-btn {
    display: inline-block;
    animation: mtxSlideUp 0.8s ease 0.4s forwards;
}

.mtx-btn-primary {
    background: #2c5aa0;
    color: #fff;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.mtx-btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@keyframes mtxSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Arrows */
.mtx-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtx-slider-arrow:hover {
    background: #2c5aa0;
    border-color: #2c5aa0;
}

.mtx-slider-prev {
    left: 30px;
}

.mtx-slider-next {
    right: 30px;
}


/* ==================== PRODUCTS SECTION (PIPES & TUBES) ==================== */
.mtx-products-section {
    background: linear-gradient(45deg, #dfddf0, #dde5f0, #b2d2ff);
}

.mtx-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Card Description */
.mtx-product-card-desc {
    font-size: 13px;
    color: #171717;
    line-height: 1.3;
    margin-top: 8px;
    font-weight: 450;
}


/* ==================== WHY METINOX SECTION ==================== */
.mtx-why-section {
    background: #fff;
}

.mtx-why-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.mtx-why-content {
    flex: 0 0 65%;
}

.mtx-why-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.mtx-why-text p:last-child {
    margin-bottom: 0;
}

.mtx-stats-column {
    flex: 0 0 30%;
}

.mtx-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mtx-stat-block {
    background: #f5f7fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: left;
    border-left: 4px solid #2c5aa0;
}

.mtx-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1;
    margin-bottom: 8px;
}

.mtx-stat-label {
    display: block;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}


/* ==================== OUR PRODUCTS CATEGORIES SECTION ==================== */
.mtx-categories-section {
    background: #f5f7fa;
}

.mtx-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mtx-category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.mtx-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 26, 61, 0.15);
}

.mtx-category-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.mtx-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mtx-category-card:hover .mtx-category-image img {
    transform: scale(1.08);
}

.mtx-category-content {
    padding: 25px;
}

.mtx-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #001a3d;
    margin-bottom: 12px;
}

.mtx-category-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mtx-category-btn {
    display: inline-block;
    background: #001a3d;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mtx-category-btn:hover {
    background: #2c5aa0;
}


/* ==================== APPLICATION INDUSTRIES SECTION ==================== */
.mtx-industries-section {
    background: #fff;
}

.mtx-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mtx-industry-card {
    background: #f5f7fa;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #e8eef3;
}

.mtx-industry-card:hover {
    background: #001a3d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 26, 61, 0.2);
}

.mtx-industry-card:hover .mtx-industry-icon,
.mtx-industry-card:hover .mtx-industry-title {
    color: #fff;
}

.mtx-industry-icon {
    font-size: 40px;
    color: #2c5aa0;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mtx-industry-title {
    font-size: 15px;
    font-weight: 600;
    color: #001a3d;
    transition: color 0.3s ease;
}


/* ==================== LOGO CAROUSEL SECTION ==================== */
.mtx-clients-section {
    background: #f5f7fa;
    overflow: hidden;
}

.mtx-logo-carousel {
    overflow: hidden;
    width: 100%;
}

.mtx-logo-track {
    display: flex;
    animation: mtxLogoScroll 30s linear infinite;
    width: max-content;
}

.mtx-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    margin-right: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mtx-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mtx-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes mtxLogoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ==================== BLOG SECTION ==================== */
.mtx-blog-section {
    background: #fff;
}

.mtx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mtx-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid #e8eef3;
}

.mtx-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 26, 61, 0.15);
}

.mtx-blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.mtx-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mtx-blog-card:hover .mtx-blog-image img {
    transform: scale(1.08);
}

.mtx-blog-content {
    padding: 25px;
}

.mtx-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #001a3d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.mtx-blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mtx-blog-link {
    font-size: 14px;
    font-weight: 600;
    color: #2c5aa0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mtx-blog-link:hover {
    color: #001a3d;
    gap: 12px;
}


/* ==================== CTA + FORM SECTION ==================== */
.mtx-cta-form-section {
    background: linear-gradient(135deg, #001a3d 0%, #0a2f5c 100%);
    color: #fff;
}

.mtx-cta-form-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.mtx-cta-content {
    flex: 0 0 58%;
}

.mtx-cta-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mtx-cta-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.mtx-cta-subheading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mtx-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mtx-cta-list li {
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mtx-cta-list li i {
    color: #4CAF50;
    font-size: 16px;
}

.mtx-cta-form-column {
    flex: 0 0 38%;
}

.mtx-cta-form-section .metinox-enquire-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.mtx-cta-form-section .metinox-enquire-title h3 {
    color: #001a3d;
}

.mtx-cta-form-section .metinox-enquire-title p {
    color: #555;
}


/* ==================== HOMEPAGE RESPONSIVE STYLES ==================== */

@media (max-width: 1200px) {
    .mtx-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mtx-industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .mtx-section {
        padding: 50px 0;
    }

    .mtx-container {
        padding: 0 25px;
    }

    .mtx-section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    /* Hero Slider */
    .mtx-hero-slider {
        height: 500px;
    }

    .mtx-slide-heading {
        font-size: 36px;
    }

    .mtx-slide-text {
        font-size: 16px;
    }

    .mtx-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .mtx-slider-prev {
        left: 15px;
    }

    .mtx-slider-next {
        right: 15px;
    }

    /* Products Grid */
    .mtx-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Why Section */
    .mtx-why-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .mtx-why-content,
    .mtx-stats-column {
        flex: 0 0 100%;
    }

    .mtx-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Categories */
    .mtx-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Industries */
    .mtx-industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Blog */
    .mtx-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* CTA Form */
    .mtx-cta-form-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .mtx-cta-content,
    .mtx-cta-form-column {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .mtx-section {
        padding: 40px 0;
    }

    .mtx-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Hero Slider */
    .mtx-hero-slider {
        height: 450px;
    }

    .mtx-slide-content {
        padding: 0 20px;
    }

    .mtx-slide-heading {
        font-size: 28px;
    }

    .mtx-slide-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .mtx-btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Stats */
    .mtx-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mtx-stat-number {
        font-size: 30px;
    }

    /* Categories */
    .mtx-categories-grid {
        grid-template-columns: 1fr;
    }

    .mtx-category-image {
        height: 180px;
    }

    /* Industries */
    .mtx-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mtx-industry-card {
        padding: 25px 15px;
    }

    .mtx-industry-icon {
        font-size: 32px;
    }

    .mtx-industry-title {
        font-size: 13px;
    }

    /* Blog */
    .mtx-blog-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .mtx-cta-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .mtx-container {
        padding: 0 15px;
    }

    .mtx-section-title {
        font-size: 22px;
    }

    /* Hero */
    .mtx-hero-slider {
        height: 400px;
    }

    .mtx-slide-heading {
        font-size: 24px;
    }

    .mtx-slide-text {
        font-size: 14px;
    }

    .mtx-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .mtx-slider-prev {
        left: 10px;
    }

    .mtx-slider-next {
        right: 10px;
    }

    /* Products */
    .mtx-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Stats */
    .mtx-stat-block {
        padding: 20px 15px;
    }

    .mtx-stat-number {
        font-size: 26px;
    }

    .mtx-stat-label {
        font-size: 12px;
    }

    /* Logo Carousel */
    .mtx-logo-item {
        width: 140px;
        height: 80px;
        padding: 10px 15px;
        margin-right: 20px;
    }

    .mtx-logo-item img {
        max-height: 45px;
    }

    /* CTA */
    .mtx-cta-heading {
        font-size: 22px;
    }

    .mtx-cta-list li {
        font-size: 14px;
    }
}

/* ==================== END MTX HOMEPAGE STYLES ====================*/