/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mth-primary-dark: #2B2B2B;
    --mth-primary-light: #6B6E70;
    --mth-secondary: #D71920;
    --mth-accent: #ff5e14;
    --mth-white: #ffffff;
    --mth-light-gray: #f5f5f5;
    --mth-gray: #666666;
    --mth-dark-gray: #333333;
    --mth-font-family: 'Inter', sans-serif;
    --mth-section-padding: 80px 0;
    --mth-container-padding: 0 20px;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--mth-font-family);
    background: var(--mth-white);
    line-height: 1.6;
    color: var(--mth-dark-gray);
}

.mth-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--mth-container-padding);
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--mth-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mth-primary-dark);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--mth-secondary) #f1f1f1;
}

/* ========== PAGE HEADER ========== */
.mth-page-header {
    background: linear-gradient(rgba(43, 43, 43, 0.9), rgba(43, 43, 43, 0.9)), url('assets/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: var(--mth-white);
}

.mth-page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.mth-breadcrumb a {
    color: var(--mth-white);
    text-decoration: none;
}

.mth-breadcrumb a:hover {
    color: var(--mth-secondary);
}

/* ========== RKPRO HEADER ========== */
.rkpro-header {
    width: 100%;
    background: #0f172a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rkpro-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.rkpro-logo img {
    height: 55px;
    width: auto;
}

.rkpro-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.rkpro-menu li {
    position: relative;
}

.rkpro-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.rkpro-menu a:hover {
    color: #38bdf8;
}

.rkpro-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    min-width: 260px;
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 300px;
    overflow-y: auto;
}

/* Custom scrollbar for submenu */
.rkpro-submenu::-webkit-scrollbar {
    width: 5px;
}

.rkpro-submenu::-webkit-scrollbar-track {
    background: #334155;
    border-radius: 10px;
}

.rkpro-submenu::-webkit-scrollbar-thumb {
    background: var(--mth-secondary);
    border-radius: 10px;
}

.rkpro-submenu::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}

.rkpro-submenu li a {
    padding: 10px 18px;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
}

.rkpro-submenu li a:hover {
    background: #334155;
}

@media(min-width:992px) {
    .rkpro-has-sub:hover>.rkpro-submenu {
        display: flex;
    }
}

.rkpro-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.rkpro-toggle:hover {
    color: #38bdf8;
}

.rkpro-toggle.rkpro-close-active {
    color: #ff4d4d;
}

/* Mobile Menu Styles */
@media(max-width:991px) {
    .rkpro-toggle {
        display: block;
    }

    .rkpro-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height:85vh;
        background: #0f172a;
        padding-top: 80px;
        transition: 0.4s ease;
        z-index: 9998;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .rkpro-nav.active {
        right: 0;
    }

    .rkpro-menu {
        flex-direction: column;
        gap: 0;
        padding-bottom: 30px;
    }

    .rkpro-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .rkpro-menu a {
        padding: 15px 20px;
        font-size: 16px;
        justify-content: space-between;
    }

    .rkpro-has-sub>a::after {
        /* content: '▼'; */
        font-size: 12px;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .rkpro-has-sub.open>a::after {
        transform: rotate(180deg);
    }

    .rkpro-submenu {
        position: static;
        display: none;
        box-shadow: none;
        background: #1a2639;
        max-height: none;
        overflow-y: visible;
        padding: 0;
        border-radius: 0;
    }

    .rkpro-submenu.open {
        display: block;
    }

    .rkpro-submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .rkpro-submenu li:last-child {
        border-bottom: none;
    }

    .rkpro-submenu li a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
        white-space: normal;
        word-wrap: break-word;
    }

    .rkpro-submenu li a:hover {
        background: #2d3748;
    }

    /* Overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        pointer-events: none;
    }
}

/* ========== FLOATING SOCIAL ========== */
.mth-floating-social {
    position: fixed;
    right: 12px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

@media(max-width: 992px) {
    .mth-floating-social {
        display: none;
    }
}

.mth-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateX(80px);
    animation: mthPopIn 0.6s ease forwards;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mth-social-icon:nth-child(1) {
    animation-delay: 0.2s;
}

.mth-social-icon:nth-child(2) {
    animation-delay: 0.35s;
}

.mth-social-icon:nth-child(3) {
    animation-delay: 0.5s;
}

.mth-social-icon:nth-child(4) {
    animation-delay: 0.65s;
}

.mth-social-icon:hover {
    transform: scale(1.15) !important;
}

.mth-whatsapp {
    background: #25D366;
}

.mth-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.mth-facebook {
    background: #1877f2;
}

.mth-linkedin {
    background: #0a66c2;
}

@keyframes mthPopIn {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ========== HERO CAROUSEL ========== */
.mth-hero-carousel {
    position: relative;
    margin-bottom: 0;
}

.mth-hero-slide {
    height: 700px;
    color: var(--mth-white);
    background-position: center center;
    background-size: cover;
    position: relative;
}

.mth-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.mth-slide-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.mth-slide-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.mth-slide-col {
    width: 100%;
    padding: 0 15px;
}

.mth-col-7 {
    width: 58.3333%;
}

.mth-slide-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    color: var(--mth-white);
    margin: 20px 0 10px;
}

.mth-slide-subtitle {
    font-size: 60px;
    line-height: 58px;
    margin: 20px 0;
    color: var(--mth-white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.mth-slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* ========== BUTTONS ========== */
.mth-btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.mth-btn-outline {
    border: 1px solid var(--mth-primary-dark);
    color: var(--mth-primary-dark);
    background: var(--mth-white);
}

.mth-btn-outline:hover {
    background: var(--mth-primary-dark);
    color: var(--mth-white);
}

.mth-btn-solid {
    background: var(--mth-primary-dark);
    color: var(--mth-white);
}

.mth-btn-solid:hover {
    background: var(--mth-secondary);
}

.mth-btn-slider {
    border: 2px solid transparent;
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    padding: 12px 30px;
    margin: 15px 5px 0;
}

.mth-btn-slider:hover {
    background: var(--mth-secondary);
}

.mth-btn-slider-border {
    background: none;
    border: 2px solid var(--mth-white);
    color: var(--mth-white);
}

.mth-btn-slider-border:hover {
    background: var(--mth-primary-dark);
    border-color: var(--mth-primary-dark);
    color: var(--mth-white);
}

/* ========== SERVICES MARQUEE ========== */
.mth-services-marquee {
    background: var(--mth-primary-dark);
    padding: 40px 0;
    overflow: hidden;
}

.mth-services-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: mthServicesScroll 30s linear infinite;
}

.mth-service-item {
    position: relative;
    width: 190px;
    height: 190px;
    min-width: 190px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.mth-service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mth-service-item span {
    position: absolute;
    inset: 0;
    background: rgba(215, 25, 32, 0.85);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.mth-service-item:hover {
    transform: scale(1.08);
}

.mth-service-item:hover img {
    transform: scale(1.1);
}

.mth-service-item:hover span {
    opacity: 1;
}

@keyframes mthServicesScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== ABOUT SECTION ========== */
.mth-about-section {
    padding: var(--mth-section-padding);
    background: #f9f9f9;
}

.mth-about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mth-about-image {
    flex: 0 0 450px;
}

.mth-about-main-img {
    width: 450px;
    height: 550px;
    border-radius: 80px 20px 80px 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 #e0e0e0;
}

.mth-about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mth-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mth-section-subtitle {
    color: var(--mth-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.mth-section-title {
    font-size: 34px;
    line-height: 1.3;
    color: var(--mth-dark-gray);
}

.mth-highlight {
    color: var(--mth-secondary);
}

.mth-about-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mth-tab {
    padding: 10px 26px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mth-tab-active {
    background: var(--mth-secondary);
    color: #fff;
    border-color: var(--mth-secondary);
}

.mth-about-details {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mth-about-small-img {
    width: 180px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.mth-about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mth-about-text {
    flex: 1;
    min-width: 250px;
}

.mth-about-text p {
    margin-bottom: 14px;
    color: #555;
}

.mth-features-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mth-features-list li {
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.mth-features-list li::before {
    content: "✔";
    color: var(--mth-secondary);
    position: absolute;
    left: 0;
}

.mth-about-footer {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mth-btn-secondary {
    padding: 14px 30px;
    background: var(--mth-secondary);
    color: #fff;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mth-btn-secondary:hover {
    background: var(--mth-primary-dark);
}

/* ========== PRODUCTS SECTION ========== */
.mth-products-section {
    padding: var(--mth-section-padding);
    background: var(--mth-light-gray);
}

.mth-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mth-section-header h2 {
    font-size: 36px;
    color: var(--mth-primary-dark);
    margin-bottom: 15px;
}

.mth-section-header p {
    color: var(--mth-gray);
    font-size: 18px;
}

.mth-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mth-product-card {
    background: var(--mth-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.mth-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(215, 25, 32, 0.1);
    border-color: var(--mth-primary-dark);
}

.mth-product-icon {
    font-size: 48px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-product-card h3 {
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
    font-size: 22px;
}

.mth-product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.mth-product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--mth-gray);
    position: relative;
    padding-left: 20px;
}

.mth-product-features li:before {
    content: '✓';
    color: var(--mth-primary-dark);
    position: absolute;
    left: 0;
}

.mth-product-btn {
    display: inline-block;
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mth-product-btn:hover {
    background: var(--mth-secondary);
    transform: translateY(-2px);
}

/* ========== FEATURES SECTION ========== */
.mth-features-section {
    padding: var(--mth-section-padding);
    background: #fafafa;
}

.mth-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mth-features-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mth-feature-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mth-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mth-feature-icon {
    font-size: 26px;
    color: var(--mth-secondary);
    margin-bottom: 12px;
}

.mth-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.mth-feature-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.mth-features-center {
    display: flex;
    justify-content: center;
}

.mth-center-image {
    position: relative;
    padding: 18px;
    border: 2px dashed #ddd;
    border-radius: 18px;
    background: #fff;
}

.mth-center-image img {
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

.mth-image-badge {
    position: absolute;
    bottom: 10px;
    right: 14px;
    background: var(--mth-secondary);
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
}

/* ========== INDUSTRIES SECTION ========== */
.mth-industries-section {
    padding: var(--mth-section-padding);
    background: var(--mth-white);
}

.mth-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mth-industry-card {
    background: var(--mth-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.mth-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(215, 25, 32, 0.1);
    border-color: var(--mth-primary-dark);
}

.mth-industry-icon {
    font-size: 48px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-industry-card h3 {
    color: var(--mth-primary-dark);
    margin-bottom: 15px;
    font-size: 22px;
}

.mth-industry-card p {
    color: var(--mth-gray);
    line-height: 1.6;
}

/* ========== STATS SECTION ========== */
.mth-stats-section {
    background: var(--mth-primary-dark);
    padding: 28px 0;
}

.mth-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.mth-stat-box {
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mth-stat-box:last-child {
    border-right: none;
}

.mth-stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mth-stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.mth-stat-box p {
    font-size: 15px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* ========== SERVICES DETAIL SECTION ========== */
.mth-services-detail-section {
    padding: var(--mth-section-padding);
    background: var(--mth-white);
}

.mth-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.mth-service-detail-card {
    background: var(--mth-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.mth-service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(215, 25, 32, 0.1);
}

.mth-service-detail-icon {
    font-size: 48px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-service-detail-card h3 {
    color: var(--mth-primary-dark);
    margin-bottom: 15px;
    font-size: 22px;
}

.mth-service-detail-card p {
    color: var(--mth-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.mth-service-features {
    list-style: none;
    text-align: left;
    padding-left: 20px;
    margin: 0;
}

.mth-service-features li {
    padding: 8px 0;
    color: var(--mth-gray);
    position: relative;
}

.mth-service-features li:before {
    content: '•';
    color: var(--mth-primary-dark);
    position: absolute;
    left: -20px;
    font-size: 20px;
}

/* ========== GALLERY SECTION ========== */
.mth-gallery-section {
    padding: var(--mth-section-padding);
    background: #f8f8f8;
}

.mth-gallery-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--mth-primary-dark);
    margin-bottom: 50px;
}

.mth-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mth-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    height: 240px;
}

.mth-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mth-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(215, 25, 32, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.mth-gallery-overlay h4 {
    font-size: 16px;
    margin-top: 10px;
}

.mth-gallery-plus {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 32px;
    line-height: 46px;
    transition: transform 0.4s ease;
}

.mth-gallery-item:hover img {
    transform: scale(1.15);
}

.mth-gallery-item:hover .mth-gallery-overlay {
    opacity: 1;
}

.mth-gallery-item:hover .mth-gallery-plus {
    transform: rotate(180deg) scale(1.1);
}

/* ========== VIDEO HERO ========== */
.ux-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.ux-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ux-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.ux-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
}

.ux-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ux-hero-text-slider {
    margin-bottom: 30px;
    min-height: 60px;
    position: relative;
}

.ux-hero-slide {
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    pointer-events: none;
}

.ux-slide-active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.ux-hero-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ux-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ========== CLIENTS SECTION ========== */
.mth-clients-section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.mth-clients-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--mth-primary-dark);
}

.mth-logo-slider {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.mth-logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
}

.mth-logo-track img {
    height: 140px;
    width: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.mth-logo-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.mth-logo-top .mth-logo-track {
    animation: mthScrollLeft 40s linear infinite;
}

.mth-logo-bottom .mth-logo-track {
    animation: mthScrollRight 40s linear infinite;
}

@keyframes mthScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes mthScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.mth-logo-slider:hover .mth-logo-track {
    animation-play-state: paused;
}

/* ========== TESTIMONIALS SECTION ========== */
.mth-testimonials-section {
    background: var(--mth-primary-dark);
    padding: var(--mth-section-padding);
    text-align: center;
    color: var(--mth-white);
}

.mth-testimonials-slider {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.mth-testimonials-track {
    display: flex;
    transition: transform 0.6s ease;
}

.mth-testimonial-slide {
    min-width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.mth-testimonial-card {
    background: #1f1f1f;
    padding: 35px;
    width: calc(33.33% - 14px);
    min-width: 280px;
    border-radius: 10px;
    font-size: 15px;
    position: relative;
    line-height: 1.6;
    text-align: left;
}

.mth-testimonial-card .mth-quote {
    font-size: 60px;
    color: #f5c16c;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.mth-client-name {
    margin-top: 15px;
    font-weight: bold;
    color: var(--mth-white);
}

.mth-client-role {
    font-size: 13px;
    color: #aaa;
}

/* ========== LOCATION SECTION ========== */
.mth-location-section {
    position: relative;
    padding: var(--mth-section-padding);
    background: #ffffff;
    overflow: hidden;
}

.mth-location-title {
    text-align: center;
    color: var(--mth-primary-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.mth-location-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    flex-wrap: wrap;
}

.mth-location-info {
    width: 40%;
    padding: 35px;
}

.mth-location-info h4 {
    color: var(--mth-primary-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.mth-location-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.mth-location-map {
    width: 60%;
    height: 320px;
}

.mth-location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== CONTACT SECTION ========== */
.mth-contact-section {
    padding: var(--mth-section-padding);
    background: var(--mth-light-gray);
}

.mth-contact-wrapper {
    display: flex;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}

.mth-contact-info {
    width: 45%;
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    padding: 50px 40px;
}

.mth-contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--mth-white);
}

.mth-info-box {
    margin-bottom: 25px;
}

.mth-info-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffcccc;
}

.mth-info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #f0f0f0;
}

.mth-contact-form {
    width: 55%;
    background: var(--mth-white);
    padding: 50px 40px;
}

.mth-contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--mth-primary-dark);
}

.mth-form-group {
    margin-bottom: 20px;
}

.mth-form-group input,
.mth-form-group textarea,
.mth-form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: var(--mth-font-family);
    background: #f9f9f9;
}

.mth-form-group input:focus,
.mth-form-group textarea:focus,
.mth-form-group select:focus {
    border-color: var(--mth-primary-dark);
    box-shadow: 0 0 0 2px rgba(43, 43, 43, 0.1);
    background: var(--mth-white);
}

.mth-btn-submit {
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.mth-btn-submit:hover {
    background: var(--mth-secondary);
    transform: translateY(-2px);
}

/* ========== CONTACT PAGE ========== */
.mth-contact-page-section {
    padding: 60px 0;
}

.mth-contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.mth-contact-page-info h2 {
    font-size: 32px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-contact-page-info>p {
    font-size: 16px;
    color: var(--mth-gray);
    margin-bottom: 30px;
}

.mth-contact-page-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mth-contact-detail-item {
    display: flex;
    gap: 20px;
}

.mth-contact-detail-item i {
    font-size: 24px;
    color: var(--mth-secondary);
    width: 40px;
    height: 40px;
    background: rgba(215, 25, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mth-contact-detail-item h4 {
    font-size: 18px;
    color: var(--mth-primary-dark);
    margin-bottom: 5px;
}

.mth-contact-detail-item p {
    color: var(--mth-gray);
    line-height: 1.6;
}

.mth-contact-page-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mth-contact-page-form h2 {
    font-size: 28px;
    color: var(--mth-primary-dark);
    margin-bottom: 30px;
}

.mth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mth-contact-page-form input,
.mth-contact-page-form select,
.mth-contact-page-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: var(--mth-font-family);
}

.mth-contact-page-form input:focus,
.mth-contact-page-form select:focus,
.mth-contact-page-form textarea:focus {
    border-color: var(--mth-primary-dark);
    outline: none;
}

.mth-contact-page-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========== ABOUT PAGE ========== */
.mth-about-page-section {
    padding: 60px 0;
}

.mth-about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.mth-about-page-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mth-about-page-text h2 {
    font-size: 32px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-about-page-text p {
    color: var(--mth-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mth-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mth-about-stat {
    text-align: center;
}

.mth-about-stat h3 {
    font-size: 36px;
    color: var(--mth-secondary);
    margin-bottom: 5px;
}

.mth-about-stat p {
    color: var(--mth-dark-gray);
    font-weight: 600;
}

.mth-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mth-mission-box,
.mth-vision-box {
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.mth-mission-box {
    background: var(--mth-primary-dark);
}

.mth-vision-box {
    background: var(--mth-secondary);
}

.mth-mission-box h3,
.mth-vision-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mth-mission-box p,
.mth-vision-box p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ========== FOOTER ========== */
.mth-footer {
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    padding: 60px 0 20px;
}

.mth-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.mth-footer-column h3 {
    color: var(--mth-white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.mth-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mth-secondary);
}

.mth-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mth-footer-links li {
    margin-bottom: 12px;
}

.mth-footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mth-footer-links a:hover {
    color: var(--mth-secondary);
    padding-left: 5px;
}

.mth-footer-info p {
    color: #bbb;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mth-footer-info i {
    color: var(--mth-secondary);
    margin-top: 5px;
    min-width: 20px;
}

.mth-newsletter-form {
    margin-top: 15px;
}

.mth-newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}

#mthSubscribeBtn {
    background: linear-gradient(135deg, #6B6E70, #2B2B2B);
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

#mthSubscribeBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.mth-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

.mth-copyright p {
    margin-bottom: 10px;
}

.mth-footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mth-footer-links-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mth-footer-links-bottom a:hover {
    color: var(--mth-secondary);
}

/* ========== BACK TO TOP ========== */
.mth-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--mth-primary-dark);
    color: var(--mth-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mth-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.mth-back-to-top:hover {
    background: var(--mth-secondary);
    transform: translateY(-5px);
}

/* ========== LIGHTBOX ========== */
.mth-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 9999;
}

.mth-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.mth-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

.mth-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* ========== SERVICE DETAIL PAGE ========== */
.mth-service-detail-page {
    padding: 60px 0;
}

.mth-service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.mth-service-main-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.mth-service-main h2 {
    font-size: 32px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
}

.mth-service-main h3 {
    font-size: 24px;
    color: var(--mth-primary-dark);
    margin: 30px 0 20px;
}

.mth-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.mth-process-step {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
}

.mth-step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: var(--mth-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.mth-process-step h4 {
    margin-bottom: 10px;
    color: var(--mth-primary-dark);
}

.mth-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.mth-brand-item {
    background: #f0f0f0;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    color: var(--mth-primary-dark);
    transition: all 0.3s ease;
}

.mth-brand-item:hover {
    background: var(--mth-secondary);
    color: #fff;
    transform: translateY(-3px);
}

.mth-sidebar-widget {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.mth-sidebar-widget h3 {
    font-size: 20px;
    color: var(--mth-primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mth-secondary);
}

.mth-sidebar-menu {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mth-sidebar-menu::-webkit-scrollbar {
    width: 5px;
}

.mth-sidebar-menu::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.mth-sidebar-menu::-webkit-scrollbar-thumb {
    background: var(--mth-secondary);
    border-radius: 10px;
}

.mth-sidebar-menu li {
    margin-bottom: 10px;
}

.mth-sidebar-menu a {
    display: block;
    padding: 10px 15px;
    background: #fff;
    color: var(--mth-dark-gray);
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.mth-sidebar-menu a:hover,
.mth-sidebar-menu a.active {
    background: var(--mth-secondary);
    color: #fff;
}

.mth-contact-widget p {
    margin-bottom: 15px;
    color: var(--mth-gray);
}

.mth-contact-widget i {
    color: var(--mth-secondary);
    width: 25px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .mth-features-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .mth-features-col {
        align-items: center;
    }

    .mth-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .mth-about-page-content {
        grid-template-columns: 1fr;
    }

    .mth-contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .mth-hero-slide {
        height: 550px;
    }

    .mth-slide-subtitle {
        font-size: 46px;
        line-height: 46px;
    }

    .mth-about-wrapper {
        flex-direction: column;
    }

    .mth-about-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .mth-about-main-img {
        width: 100%;
        height: 400px;
    }

    .mth-contact-wrapper {
        flex-direction: column;
    }

    .mth-contact-info,
    .mth-contact-form {
        width: 100%;
    }

    .mth-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mth-location-card {
        flex-direction: column;
    }

    .mth-location-info,
    .mth-location-map {
        width: 100%;
    }

    .mth-location-map {
        height: 280px;
    }

    .mth-testimonial-slide {
        flex-direction: column;
        gap: 20px;
    }

    .mth-testimonial-card {
        width: 100%;
    }

    .mth-mission-vision {
        grid-template-columns: 1fr;
    }

    .mth-service-content {
        grid-template-columns: 1fr;
    }

    .mth-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mth-hero-slide {
        height: 450px;
    }

    .mth-slide-title {
        font-size: 22px;
    }

    .mth-slide-subtitle {
        font-size: 30px;
        line-height: 30px;
    }

    .mth-col-7 {
        width: 100%;
    }

    .mth-service-item {
        width: 150px;
        height: 150px;
        min-width: 150px;
    }

    .mth-about-details {
        flex-direction: column;
    }

    .mth-about-small-img {
        width: 100%;
        height: 200px;
    }

    .mth-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mth-stat-box:nth-child(2) {
        border-right: none;
    }

    .mth-services-grid {
        grid-template-columns: 1fr;
    }

    .mth-gallery-grid {
        grid-template-columns: 1fr;
    }

    .mth-logo-track img {
        height: 100px;
    }

    .mth-logo-track {
        gap: 50px;
    }

    .ux-hero-title {
        font-size: 30px;
    }

    .ux-hero-slide {
        font-size: 16px;
    }

    .mth-about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mth-form-row {
        grid-template-columns: 1fr;
    }

    .mth-process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mth-slide-subtitle {
        font-size: 24px;
        line-height: 26px;
    }

    .mth-section-header h2 {
        font-size: 28px;
    }

    .mth-products-grid {
        grid-template-columns: 1fr;
    }

    .mth-stats-grid {
        grid-template-columns: 1fr;
    }

    .mth-stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mth-stat-box:last-child {
        border-bottom: none;
    }

    .mth-industries-grid {
        grid-template-columns: 1fr;
    }

    .mth-logo-track img {
        height: 70px;
    }

    .mth-logo-track {
        gap: 30px;
    }

    .mth-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mth-about-tabs {
        flex-direction: column;
    }

    .mth-about-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ux-hero-title {
        font-size: 2rem;
    }

    .ux-hero-button {
        padding: 12px 24px;
    }

    .mth-page-header h1 {
        font-size: 32px;
    }

    .mth-brands-grid {
        grid-template-columns: 1fr;
    }
}