﻿
:root {
    --nx-teal: #2563eb;
    --nx-teal-hover: #1d4ed8;
    --nx-secondary-mix: #2b9436;
    --nx-dark: #0f172a;
    --nx-text: #334155;
    --nx-light-bg: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--nx-text);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* --- 1. HEADER & NAVBAR STYLES --- */
.navbar {
    padding: 0.8rem 0;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
}


.brand-main {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.6rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    padding: 0.5rem 0 !important;
    margin: 0 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link:hover, .nav-link.active {
        color: var(--nx-teal) !important;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--nx-teal);
            border-radius: 2px;
        }

.btn-partner {
    background-color: var(--nx-teal);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

    .btn-partner:hover {
        background-color: var(--nx-teal-hover);
        transform: translateY(-1px);
    }

/* --- 2. HERO SLIDER STYLES --- */
.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--nx-dark);
}

    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 100%);
        z-index: 1;
    }

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    max-width: 700px;
    z-index: 2;
    left: 8%;
    right: auto;
    padding: 0;
}

    .carousel-caption h1 {
        font-weight: 800;
        font-size: 3.8rem;
        line-height: 1.15;
        margin-bottom: 1.2rem;
        color: #ffffff;
        letter-spacing: -0.5px;
    }

    .carousel-caption p {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

.btn-slider-teal {
    background-color: var(--nx-teal);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-slider-teal:hover {
        background-color: var(--nx-teal-hover);
    }

.btn-slider-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

    .btn-slider-outline:hover {
        background-color: #ffffff;
        color: var(--nx-dark) !important;
    }

.carousel-control-prev, .carousel-control-next {
    width: 6%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 3;
}

    .carousel-control-prev:hover, .carousel-control-next:hover {
        opacity: 1;
    }

.cc-circle {
    background-color: rgba(255, 255, 255, 0.15);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

    .cc-circle:hover {
        background-color: var(--nx-teal);
    }

.carousel-indicators {
    z-index: 3;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
    left: 8%;
    right: auto;
    margin-left: 0;
}

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 10px;
        background-color: #ffffff;
        opacity: 0.4;
        border: none;
    }

    .carousel-indicators .active {
        opacity: 1;
        background-color: var(--nx-teal);
        border-radius: 20px;
        width: 32px;
        transition: all 0.3s ease;
    }

.carousel-item.active h1 {
    animation: slideUpIn 0.6s ease forwards;
}

.carousel-item.active p {
    animation: slideUpIn 0.8s ease forwards;
}

.carousel-item.active .btn-wrap {
    animation: slideUpIn 1s ease forwards;
}

@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 3. INTRO SECTION STYLES --- */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-badge {
    color: var(--nx-secondary-mix);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.about-title {
    color: var(--nx-dark);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-paragraph {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #475569;
}

.about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* --- CORPORATE PROFILE & SERVICES SECTION STYLES --- */
.profile-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.profile-title-block h3 {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--nx-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .profile-title-block h3 i {
        color: var(--nx-secondary-mix);
    }

.service-list-item {
    background-color: var(--nx-light-bg);
    border-left: 4px solid var(--nx-secondary-mix);
    padding: 1rem 1.25rem;
    border-radius: 0 10px 10px 0;
    font-weight: 700;
    color: var(--nx-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

    .service-list-item:hover {
        transform: translateX(5px);
        background-color: rgba(13, 148, 136, 0.05);
    }

.profile-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    height: 100%;
}

    .profile-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 450px;
    }

/* --- 4. VISION & MISSION STYLES --- */
.vm-section {
    padding: 5.5rem 0;
    background-color: var(--nx-light-bg);
    border-top: 1px solid #e2e8f0;
}


.vm-clean-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.vm-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.vm-clean-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.06);
    border-color: rgba(13, 148, 136, 0.2);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vm-custom-icon {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
}

.vm-clean-box:hover .vm-custom-icon {
    background-color: var(--nx-teal);
    color: #ffffff;
}

.vm-clean-title {
    color: var(--nx-dark);
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -0.3px;
}

.vm-clean-text {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* --- 5. CORPORATE HIGHLIGHTS STYLES --- */
.highlights-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.highlights-badge, .segment-badge, .prod-badge {
    background-color: rgba(43, 148, 54, 0.1);
    color: var(--nx-secondary-mix);
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.highlights-title {
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--nx-dark);
    letter-spacing: -0.5px;
    margin-bottom: 3.5rem;
}

.highlight-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(15, 23, 42, 0.06);
        border-color: var(--nx-teal);
    }

.highlight-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 148, 136, 0.08);
    color: var(--nx-teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon-box {
    background-color: var(--nx-teal);
    color: #ffffff;
}

.highlight-name {
    color: var(--nx-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.3px;
}

.highlight-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* --- BRAND SHOWPIECE BRAND SLIDER --- */
.unique-brand-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .unique-brand-section::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 150px;
        background: linear-gradient(90deg, #0f172a 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

    .unique-brand-section::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 150px;
        background: linear-gradient(-90deg, #0f172a 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

.brand-scroller-track {
    display: flex;
    width: max-content;
    animation: continuousScroll 25s linear infinite;
    gap: 2.5rem;
}

    .brand-scroller-track:hover {
        animation-play-state: paused;
    }

@keyframes continuousScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.premium-brand-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .premium-brand-tag i {
        color: var(--nx-secondary-mix);
        font-size: 1.1rem;
    }

    .premium-brand-tag:hover {
        background: rgba(13, 148, 136, 0.15);
        border-color: var(--nx-teal);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(13, 148, 136, 0.25);
    }

/* --- 6. PRODUCT SEGMENTS STYLES --- */
.segment-section {
    padding: 6rem 0;
    background-color: var(--nx-light-bg);
    border-top: 1px solid #e2e8f0;
}



.segment-title {
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--nx-dark);
    letter-spacing: -0.5px;
    margin-bottom: 3.5rem;
}

.segment-card {
    background-color: #ffffff;
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .segment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(13, 148, 136, 0.06);
        border-color: var(--nx-teal);
    }

.segment-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 148, 136, 0.06);
    color: var(--nx-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.segment-card:hover .segment-icon-box {
    background-color: var(--nx-teal);
    color: #ffffff;
    transform: scale(1.08);
}

.segment-name {
    color: var(--nx-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.segment-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* --- 7. PRODUCTS PORTFOLIO SECTION STYLES --- */
.prod-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}



.prod-section-title {
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--nx-dark);
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

.prod-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .prod-card:hover {
        transform: translateY(-5px);
        border-color: var(--nx-teal);
        box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.1);
    }

.prod-img-container {
    height: 210px;
    background-color: var(--nx-light-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
    border: 1px solid #f1f5f9;
}

.prod-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-img {
    transform: scale(1.05);
}

.prod-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--nx-dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4rem;
}

.prod-desc-short {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.3rem;
}

.btn-view-details {
    width: 100%;
    background-color: #f8fafc;
    color: var(--nx-dark);
    border: 1px solid #e2e8f0;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.prod-card:hover .btn-view-details {
    background-color: var(--nx-teal);
    color: #ffffff;
    border-color: var(--nx-teal);
}

/* Modal Custom Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header-premium {
    background-color: var(--nx-dark);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border: none;
    position: relative;
}

    .modal-header-premium .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

.modal-body-pills {
    padding: 2.5rem 2rem;
}

.info-list-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .info-list-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--nx-text);
    line-height: 1.5;
}

    .info-list-item i {
        margin-top: 4px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .info-list-item.use-item i {
        color: var(--nx-teal);
    }

    .info-list-item.benefit-item i {
        color: #10b981;
    }

    .info-list-item.side-item i {
        color: #f59e0b;
    }

    .info-list-item.not-item i {
        color: #ef4444;
    }

.alert-box-pills {
    background-color: #fff1f2;
    border-left: 4px solid #f43f5e;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    color: #9f1239;
    font-size: 0.95rem;
}

/* Responsive Viewports Overrides */
@media (max-width: 640px) {
    .contact-email a {
        font-size: 12px;
    }
}

    @media (max-width: 991px) {
        .nav-link::after {
            display: none;
        }

       

        .nav-link {
            margin: 0.5rem 0;
        }

        .carousel-indicators {
            left: 5%;
        }

        .about-title {
            font-size: 2rem;
        }

        .profile-img-frame img {
            min-height: auto;
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .carousel-item {
            height: 500px;
        }

        .carousel-caption {
            left: 5%;
            right: 5%;
        }

            .carousel-caption h1 {
                font-size: 2.3rem;
            }

            .carousel-caption p {
                font-size: 1.1rem;
            }

        .carousel-control-prev, .carousel-control-next {
            display: none;
        }

        .about-section, .profile-section, .vm-section, .prod-section, .segment-section, .highlights-section, .unique-brand-section {
            padding: 3.5rem 0;
        }

        .about-img {
            height: 300px;
        }

        .vm-clean-box {
            padding: 2rem;
        }

        .vm-clean-title {
            font-size: 1.5rem;
        }

        .prod-section-title, .segment-title, .highlights-title, .contact-title, .about-title, .brand-title {
            font-size: 2rem !important;
        }
        .btn-slider-teal {
            padding: 0.8rem 1rem;
        }
        .modal-header-premium .btn-close {
            top: 0.5rem;
            right: 0.5rem;
        }

        .prod-name {
            height: auto;
        }

        .premium-brand-tag {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }
    }

    .btn-nx-teal {
        background-color: var(--nx-teal);
        color: #ffffff;
        border: none;
        padding: 11px 61px;
        transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }


        .btn-nx-teal:hover {
            background-color: var(--nx-teal-hover);
            color: #ffffff;
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }


        .btn-nx-teal:active {
            transform: scale(0.98);
        }

    /*=======footer========*/
    .footer-main {
        background-color: var(--nx-dark);
        padding: 5rem 0 2rem 0;
        color: #94a3b8;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-text {
        font-size: 0.92rem;
        line-height: 1.65;
        color: #94a3b8;
        max-width: 350px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.03);
        color: #cbd5e1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        text-decoration: none;
    }

    .footer-heading {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .footer-links {
        font-size: 0.92rem;
    }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }

    .footer-list {
        font-size: 0.92rem;
        color: #94a3b8;
    }

    .footer-quality {
        font-size: 0.88rem;
        line-height: 1.6;
        color: #64748b;
        margin: 0;
    }

    .footer-hr {
        border-color: rgba(255,255,255,0.08);
        margin: 2rem 0;
    }

    .footer-bottom {
        font-size: 0.85rem;
        color: #64748b;
    }

    /*======model=======*/
    .modal-header-premium {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }

    .modal-badge {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .modal-body-pills {
        padding: 1.5rem;
    }

    .modal-section-title {
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #111;
    }

    .modal-text {
        line-height: 1.7;
        font-size: 1.02rem;
        color: #6c757d;
    }

    .text-teal {
        color: var(--nx-teal);
    }

    .info-list-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-divider {
        opacity: 0.25;
    }

    .alert-box-pills {
        margin-top: 1.5rem;
        padding: 1rem 1.2rem;
        border-radius: 10px;
        background: rgba(16,185,129,0.08);
        color: #065f46;
        font-size: 0.9rem;
    }


    /*======profile=======*/

    .profile-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 2.3rem;
    }

    .profile-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #6c757d;
    }

    .profile-img-frame img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .profile-title-block h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .service-list-item {
        font-size: 0.95rem;
        padding: 8px 12px;
        border-radius: 6px;
        background: rgba(0,0,0,0.03);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .text-teal {
        color: var(--nx-teal);
    }


    /*======unique-brand=======*/
    .brand-subtitle {
        color: var(--nx-secondary-mix);
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    /*======contact=======*/
    .contact-section {
        padding: 6rem 0;
        background-color: var(--nx-light-bg);
        border-top: 1px solid #e2e8f0;
    }

    .contact-title {
        font-weight: 800;
        font-size: 2.6rem;
        color: var(--nx-dark);
        letter-spacing: -0.5px;
    }

    .map-box {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        height: 100%;
        min-height: 400px;
    }

    .map-frame {
        border: 0;
        min-height: 400px;
    }

    .contact-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        display: flex;
        gap: 1.25rem;
        box-shadow: 0 4px 12px rgba(15,23,42,0.01);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(13, 148, 136, 0.08);
        color: var(--nx-teal);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .contact-heading {
        color: var(--nx-dark);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .contact-company {
        margin: 0;
        color: var(--nx-dark);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .contact-text {
        margin: 0;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .contact-email {
        margin: 0;
        font-size: 1.05rem;
    }

        .contact-email a {
            color: var(--nx-teal);
            text-decoration: none;
            font-weight: 700;
        }

    .contact-small {
        margin: 0;
        color: #64748b;
        font-size: 0.88rem;
        margin-top: 0.25rem;
    }

    .contact-phone {
        margin: 0;
        color: var(--nx-dark);
        font-size: 1.1rem;
        font-weight: 700;
    }



    /*======breadcumb=======*/
    .about_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .product_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/product_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .contact_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero {
        height: 40vh;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
    }

 .about-section,
.contact-section,
.unique-brand-section {
    overflow: hidden;
}