
        /* BASE & RESET STYLES MAPPED TO UNIQUE CLASS NAMES */
        .mt-body-style {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f8fafc;
            color: #0f172a;
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .mt-box-sizing {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .mt-link-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        .mt-list-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .mt-img-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .mt-btn-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            cursor: pointer;
            border: none;
            outline: none;
            background: none;
            font-family: inherit;
        }

        .mt-heading-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .mt-paragraph-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* HEADER & NAVIGATION */
        .mt-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            z-index: 1000;
        }

        .mt-nav-container {
            box-sizing: border-box;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .mt-logo-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
            flex-shrink: 0;
        }

        .mt-logo-link img{
            width: 200px;
            height: auto;
        }

        .mt-nav-menu {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }

        .mt-nav-item {
            box-sizing: border-box;
            position: relative;
        }

        .mt-nav-link {
            font-weight: 500;
            color: #4b5563;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }

        .mt-nav-link:hover, .mt-nav-link.active {
            color: #2563eb;
        }

        .mt-nav-item-education {
            /* font-size: 1.15rem;
            font-weight: 600;
            color: #0f172a !important; */
        }

        /* Products dropdown implementation */
        .mt-dropdown-indicator {
            transition: transform 0.2s ease;
        }

        .mt-nav-item:hover .mt-dropdown-indicator {
            transform: rotate(180deg);
        }

        .mt-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 1rem;
            min-width: 200px;
            width: max-content;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mt-nav-item:hover .mt-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mt-dropdown-link {
            display: block;
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
            border-radius: 6px;
            font-weight: 500;
            color: #4b5563;
        }

        .mt-dropdown-link:hover {
            background-color: #f8fafc;
            color: #2563eb;
        }

        /* SINGLE NAVIGATION CTA - CHAT BUTTON */
        .mt-header-actions {
            box-sizing: border-box;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mt-chat-btn {
            background-color: #2563eb; /* Indigo/blue blend */
            color: #ffffff;
            padding: 0.65rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(67, 56, 202, 0.2);
            transition: all 0.2s ease;
        }

        .mt-chat-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(67, 56, 202, 0.3);
            background-color: #3730a3;
        }

        .mt-chat-btn:active {
            transform: translateY(0);
        }

        /* MOBILE MENU HAMBURGER */
        .mt-mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }

        .mt-hamburger-line {
            width: 100%;
            height: 2px;
            background-color: #0f172a;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        /* HERO SECTION */
        .mt-hero-section {
            box-sizing: border-box;
            padding: 8rem 2rem 2rem;
            background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.92) 100%), 
                              url('../assets/images/medtechbg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #ffffff;
            min-height: 95vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .mt-hero-container {
            box-sizing: border-box;
            max-width: 1200px;
            margin: auto auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 4rem;
            align-items: center;
            padding: 2rem 0;
        }

        /* Left Content Area */
        .mt-hero-content {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Highlighted white box tag style */
        .mt-tagline-box {
            background-color: #ffffff;
            color: #0f172a;
            padding: 0.6rem 1.25rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .mt-main-heading {
            font-size: 3.5rem;
            line-height: 1.15;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .mt-sub-description-box {
            /* background-color: #ffffff; */
            color: #fff;
            padding: 0.85rem 0.2rem;
            border-radius: 4px;
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.5;
            max-width: 85%;
            margin-bottom: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        /* Hero Action Buttons */
        .mt-hero-actions {
            box-sizing: border-box;
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .mt-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .mt-btn-primary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #3b82f6;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
        }

        .mt-btn-primary:hover {
            background-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        }

        .mt-btn-secondary {
            background-color: #ffffff;
            color: #1d4ed8;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .mt-btn-secondary:hover {
            background-color: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .mt-btn:active {
            transform: translateY(0);
        }

        .mt-btn-icon {
            transition: transform 0.2s ease;
        }

        .mt-btn:hover .mt-btn-icon {
            transform: translateX(4px);
        }

        /* Right Hand Double-Image Area */
        .mt-hero-showcase {
            box-sizing: border-box;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            position: relative;
        }

        .mt-showcase-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            position: relative;
            aspect-ratio: 3/4;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mt-showcase-card:hover {
            transform: translateY(-8px);
        }

        .mt-showcase-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mt-showcase-card:hover .mt-showcase-img {
            transform: scale(1.05);
        }

        /* Subtle overlay info in showcase cards */
        .mt-card-badge {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            background-color: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(4px);
            color: #ffffff;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* INTEGRATED BOTTOM FEATURES SECTION */
        .mt-features-container {
            box-sizing: border-box;
            max-width: 1200px;
            margin: 2rem auto 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 2rem;
        }

        .mt-feature-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
            transition: transform 0.2s ease;
        }

        .mt-feature-card:hover {
            transform: translateY(-2px);
        }

        .mt-feature-icon-wrapper {
            background-color: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
        }

        .mt-feature-title {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.15rem;
            white-space: nowrap;
        }

        .mt-feature-desc {
            color: #cbd5e1; /* Soft gray blue tint */
            font-size: 0.85rem;
            line-height: 1.3;
            white-space: nowrap;
        }

        /* MODAL (DEMO CHAT & CONTACT) */
        .mt-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mt-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mt-modal-content {
            box-sizing: border-box;
            background-color: #ffffff;
            border-radius: 12px;
            width: 90%;
            max-width: 480px;
            padding: 2.5rem;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .mt-modal-overlay.active .mt-modal-content {
            transform: scale(1);
        }

        .mt-modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            color: #94a3b8;
            transition: color 0.2s ease;
        }

        .mt-modal-close:hover {
            color: #0f172a;
        }

        .mt-modal-header {
            box-sizing: border-box;
            margin-bottom: 1.5rem;
        }

        .mt-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .mt-modal-subtitle {
            color: #64748b;
            font-size: 0.95rem;
        }

        .mt-input-group {
            box-sizing: border-box;
            margin-bottom: 1.25rem;
        }

        .mt-input-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #475569;
            margin-bottom: 0.5rem;
        }

        .mt-input-field {
            box-sizing: border-box;
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid #cbd5e1;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.2s ease;
            font-family: inherit;
        }

        .mt-input-field:focus {
            outline: none;
            border-color: #2563eb;
        }

        .mt-submit-btn {
            box-sizing: border-box;
            width: 100%;
            background-color: #2563eb;
            color: #ffffff;
            padding: 0.85rem;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 0.5rem;
            transition: background-color 0.2s ease;
        }

        .mt-submit-btn:hover {
            background-color: #1d4ed8;
        }

        /* RESPONSIVE BREAKPOINTS */

        /* Laptop / Medium Desktop (up to 1200px) */
        @media (max-width: 1200px) {
            .mt-hero-container {
                gap: 2rem;
            }
            .mt-main-heading {
                font-size: 3rem;
            }
            .mt-features-container {
                gap: 1rem;
            }
            .mt-feature-title {
                font-size: 0.9rem;
            }
            .mt-feature-desc {
                font-size: 0.8rem;
            }
        }

        /* Tablets & Mobile Base (up to 991px) */
        @media (max-width: 991px) {
            .mt-nav-menu {
                display: none; /* Hide drawer menu by default */
            }

            .mt-mobile-toggle {
                display: flex; /* Show hamburger button */
            }

            /* Responsive Mobile Menu Drawer */
            .mt-nav-menu.mobile-active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                padding: 2rem;
                box-shadow: 0 15px 30px rgba(0,0,0,0.1);
                gap: 1.25rem;
                align-items: flex-start;
                border-top: 1px solid #e2e8f0;
                animation: mt-slide-down 0.4s ease forwards;
            }

            .mt-nav-item {
                width: 100%;
            }

            .mt-dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                padding: 0.5rem 0 0 1rem;
                border: none;
                display: none;
            }

            .mt-nav-item.dropdown-open .mt-dropdown-menu {
                display: block;
            }

            /* Hamburger active state animation */
            .mt-mobile-toggle.active .mt-hamburger-line:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .mt-mobile-toggle.active .mt-hamburger-line:nth-child(2) {
                opacity: 0;
            }

            .mt-mobile-toggle.active .mt-hamburger-line:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            /* Stack Hero Elements */
            .mt-hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .mt-hero-content {
                align-items: center;
            }

            .mt-sub-description-box {
                max-width: 100%;
            }

            .mt-hero-actions {
                justify-content: center;
            }

            .mt-hero-showcase {
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
            }

            /* Keep Features in horizontal scroll instead of breaking design */
            .mt-features-container {
                overflow-x: auto;
                justify-content: flex-start;
                gap: 2rem;
                padding-bottom: 1rem;
                -webkit-overflow-scrolling: touch;
            }

            .mt-feature-card {
                flex: 0 0 auto;
            }
        }

        /* Mobile phones (up to 600px) */
        @media (max-width: 600px) {
            .mt-nav-container {
                padding: 1rem 1.25rem;
            }

            .mt-hero-section {
                padding: 7.5rem 1.25rem 2rem;
            }

            .mt-tagline-box {
                font-size: 0.95rem;
                padding: 0.6rem 1.25rem;
            }

            .mt-main-heading {
                font-size: 2.15rem;
            }

            .mt-sub-description-box {
                font-size: 0.95rem;
                padding: 0.85rem 1.25rem;
            }

            .mt-hero-actions {
                width: 100%;
                flex-direction: column;
                gap: 0.85rem;
            }

            .mt-btn {
                width: 100%;
            }

            .mt-modal-content {
                padding: 1.75rem;
            }

            /* Keep Chat Pill elegant on mobile navbar */
            .mt-chat-btn {
                padding: 0.5rem 1.25rem;
                font-size: 0.85rem;
            }
        }

        /* Slides down mobile menu overlay nicely */
        @keyframes mt-slide-down {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

          .emp-section-container {
            
            background-color: #ffffff;
            color: #0f172a;
            padding: 4.5rem 1.5rem;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            width: 100%;
            position: relative;
        }

        .emp-section-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .emp-sec-layout-limit {
            /* max-width: 1200px; */
            margin: 0 auto;
            width: 100%;
            /* padding-top: 100px; */
        }

        .emp-sec-about {
            padding: 1rem 0 4.5rem 0;
        }

        .emp-sec-about-grid {
            display: grid;
            grid-template-columns: 4.2fr 5.8fr; /* Accurate visual scale matching the mockup */
            gap: 3.5rem;
            align-items: stretch; /* Stretch to align top and bottom perfectly */
        }

        .emp-sec-image-frame {
            width: 100%;
            height: 100%;
            min-height: 390px;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
            position: relative;
            background-color: #0c183a;
            border: 1px solid rgba(15, 23, 42, 0.06);
        }

        .emp-sec-featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Controls for viewing design reference files */
        .emp-sec-img-interactive-overlay {
            position: absolute;
            bottom: 1.25rem;
            right: 1.25rem;
            background-color: rgba(12, 24, 58, 0.9);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.2s ease;
            z-index: 5;
        }

        .emp-sec-img-interactive-overlay:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
        }

        .emp-sec-overlay-indicator-text {
            color: #ffffff;
            font-size: 0.725rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .emp-sec-text-column {
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Vertically distributes elements for perfect height alignment */
            padding: 0.25rem 0;
        }

        .emp-sec-subtitle {
            color: #2563eb;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: inline-block;
        }

        .emp-sec-main-heading {
            color: #0c183a;
            font-size: 2.35rem;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 1.15rem;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .emp-sec-paragraph {
            color: #475569;
            font-size: 0.975rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* 4 stats strictly in a horizontal line */
        .emp-sec-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            width: 100%;
            margin-bottom: 2.25rem;
        }

        .emp-sec-stat-card {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background-color: #f8fafc;
            padding: 1rem 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.04);
            transition: all 0.2s ease;
        }

        .emp-sec-stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
            background-color: #ffffff;
            border-color: rgba(37, 99, 235, 0.15);
        }

        .emp-sec-stat-icon-wrapper {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid #2563eb;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background-color: #ffffff;
        }

        .emp-sec-stat-numbers-stack {
            display: flex;
            flex-direction: column;
        }

        .emp-sec-stat-metric-value {
            font-size: 1.4rem;
            font-weight: 600;
            color: #0c183a;
            line-height: 1.1;
        }

        .emp-sec-stat-metric-label {
            font-size: 0.825rem;
            color: #64748b;
            font-weight: 600;
            margin-top: 0.25rem;
            line-height: 1.2;
            white-space: nowrap;
        }

        .emp-sec-button-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background-color: #0c183a;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.85rem 1.85rem;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            align-self: flex-start; /* Aligns to left baseline */
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(12, 24, 58, 0.1);
        }

        .emp-sec-button-action:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
        }

        .emp-sec-button-arrow-icon {
            transition: transform 0.2s ease;
        }

        .emp-sec-button-action:hover .emp-sec-button-arrow-icon {
            transform: translateX(4px);
        }

        .emp-sec-products {
            padding: 0rem 0 0;
            background-color: #f8fafc;
            border-radius: 20px;
            margin-top: 1rem;
        }

        .emp-sec-products-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            padding: 0 1.5rem;
        }

        .emp-sec-products-main-title {
            color: #0c183a;
            font-size: 2.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
            margin-top: 0;
        }

        .emp-sec-products-subtext {
            color: #475569;
            font-size: 0.95rem;
        }

        /* 6 product cards side-by-side in one horizontal line */
        .emp-sec-products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.15rem;
            padding: 0 1.5rem;
        }

        .emp-sec-product-card {
            background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: center;
            justify-content: end;
    
    padding: 20px 0px 0;
        }

        .emp-sec-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
            border-color: rgba(37, 99, 235, 0.15);
        }

        .emp-sec-card-title-container {
            width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    margin-bottom: 15px;
        }

        .emp-sec-card-product-title {
            font-size: 1rem;
            font-weight: 750;
            color: #0c183a;
            line-height: 1.3;
            text-align: center;
        }

        .emp-sec-product-image-container {
              flex: 1;

    width: 100%;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;
            /* padding: 0.5rem; */
        }

        .emp-sec-product-image {
           width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.4s ease;
        }

        .emp-sec-product-card:hover .emp-sec-product-image {
            transform: scale(1.08);
        }

      

        

        /* FULL PAGE OVERLAY COMPILER SCREENSHOT (FOR LIVE COMPARISON OVERLAY) */
        .emp-sec-blueprint-overlay-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s ease;
            
        }

        .emp-sec-blueprint-overlay-container.active {
            opacity: 0.55; /* Ideal opacity for comparing grid elements directly */
        }

        .emp-sec-blueprint-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        @media (max-width: 1100px) {
            .emp-sec-products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .emp-sec-product-card {
                height: 220px;
            }
        }

        @media (max-width: 1024px) {
            .emp-sec-about-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .emp-sec-image-frame {
                height: 350px;
                min-height: auto;
            }

            .emp-sec-stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .emp-sec-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .emp-sec-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }

            .emp-sec-admin-grid-inputs {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .emp-sec-main-heading {
                font-size: 2rem;
            }

            .emp-sec-products-main-title {
                font-size: 2rem;
            }

            .emp-sec-verification-widget {
                bottom: 1rem;
                left: 1rem;
                width: calc(100% - 2rem);
            }
        }

        @media (max-width: 480px) {
            .emp-sec-stats-grid {
                grid-template-columns: 1fr;
            }

            .emp-sec-products-grid {
                grid-template-columns: 1fr;
            }
        }

        .emp-wcu-module-container {
            
            background-color: #ffffff;
            color: #0f172a;
            padding: 4rem 1.5rem;
            width: 100%;
            box-sizing: border-box;
        }

        .emp-wcu-content-wrapper {
            /* max-width: 1200px; */
            padding: 50px 0 50px;
            margin: 0 auto;
            width: 100%;
        }

        .emp-wcu-header-block {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .emp-wcu-label-text {
            color: #2563eb;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            display: block;
        }

        .emp-wcu-heading-text {
            color: #0c183a;
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
        }

        .emp-wcu-grid-layout {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            width: 100%;
        }

        .emp-wcu-card-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .emp-wcu-icon-box {
            width: 56px;
            height: 56px;
            background-color: #eff6ff;
            color: #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .emp-wcu-card-title {
            color: #0c183a;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .emp-wcu-card-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.4;
            max-width: 180px;
        }

        @media (max-width: 1024px) {
            .emp-wcu-grid-layout {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .emp-wcu-grid-layout {
                grid-template-columns: repeat(1, 1fr);
            }
            .emp-wcu-card-description {
                max-width: 300px;
            }
        }

        .brands-section-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            font-family: sans-serif;
        }

        .brands-section-title {
            color: #2563eb;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .brands-section-heading {
            font-size: 30px;
            color: #111827;
            margin-bottom: 40px;
        }

        .brands-slider-viewport {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .brands-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            align-items: center;
        }

        .brand-logo-item {
            flex: 0 0 20%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }

        @media (max-width: 1024px) { .brand-logo-item { flex: 0 0 33.33%; } }
        @media (max-width: 640px) { .brand-logo-item { flex: 0 0 50%; } }

        .brand-logo-img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .brand-logo-img:hover { opacity: 1; }

        /* Navigation Buttons */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 50%;
            padding: 4px 10px;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            z-index: 10;
        }
        .slider-nav-btn:hover { background: #f9fafb; }
        .btn-left { left: 0; }
        .btn-right { right: 0; }

         .certs-section-block {
        background-color: #002b5c;
        padding: 80px 20px;
        color: #ffffff;
        
    }
    .certs-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    .certs-subtitle {
        color: #60a5fa;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    .certs-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .certs-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .cert-card {
        background: #ffffff;
        color: #333333;
        padding: 20px;
        border-radius: 12px;
        flex: 1;
        min-width: 160px;
        max-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cert-logo-placeholder {
        width: 100px;
        height: 100px;
        /* background-color: #f3f4f6; */
        /* border: 2px dashed #d1d5db; */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #9ca3af;
        border-radius: 50%;
    }
    .cert-label {
        font-weight: bold;
        font-size: 14px;
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .certs-grid {
            gap: 15px;
        }
        .cert-card {
            min-width: 140px;
        }
    }

    .testi-section-block {
        background-color: #f9fafb;
        padding: 80px 20px;
       
    }
    .testi-container {
        max-width: 1000px;
        margin: 0 auto;
    }
    .testi-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .testi-subtitle {
        color: #2563eb;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .testi-main-title {
        font-size: 32px;
        color: #111827;
        margin: 0;
    }

    /* Slider Styles */
    .testi-slider-viewport {
        overflow: hidden;
        width: 100%;
    }
    .testi-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 20px;
    }
    .testi-card {
        flex: 0 0 calc(33.333% - 14px);
        background: #ffffff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        border: 1px solid #e5e7eb;
    }
    .testi-quote-icon {
        color: #3b82f6;
        font-size: 40px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .testi-text {
        font-size: 16px;
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }
    .testi-name {
        font-weight: bold;
        color: #111827;
        margin: 0 0 5px 0;
    }
    .testi-title {
        font-size: 14px;
        color: #6b7280;
        margin: 0 0 15px 0;
    }
    .testi-stars {
        color: #fbbf24;
        font-size: 18px;
    }

    /* Indicators */
    .testi-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    .testi-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .testi-dot.active {
        background: #2563eb;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .testi-card { flex: 0 0 calc(50% - 10px); }
    }
    @media (max-width: 640px) {
        .testi-card { flex: 0 0 100%; }
    }

     .footer-block { background-color: #001a35; color: #ffffff; padding: 60px 20px 20px; }
    .footer-container { max-width: 1200px; margin: 0 auto; position: relative; }
    
    .footer-cta { padding: 40px; border-radius: 0px; margin-bottom: 0px; position: relative; }
    .footer-cta-content { display: flex; justify-content: space-between; align-items: center; gap: 20px;
    max-width: 1200px; margin: auto;
    }
    .footer-cta-title { font-size: 28px; margin-bottom: 10px; color: #fff; }
    .footer-cta-text { color: #fff;}
    .footer-cta-btn { background: white; color: #001a35; padding: 12px 24px; border-radius: 6px; text-decoration: none; font-weight: bold; white-space: nowrap; }
    
    .whatsapp-float { position: absolute; top: -20px; right: 20px; background: #25d366; padding: 10px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

    .footer-main { display: flex; flex-wrap: nowrap; gap: 40px; margin-bottom: 40px; }
    .footer-col { flex: 1; min-width: 180px; }
    .footer-col-title { font-size: 18px; margin-bottom: 20px; }
    .footer-links, .footer-contact { list-style: none; padding: 0; }
    .footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 14px; }
    .footer-links a { color: #cbd5e1; text-decoration: none; }
    
    .footer-logo-placeholder { background: white; color: #001a35; padding: 10px; width: 120px; text-align: center; font-weight: bold; margin-bottom: 15px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 15px; }
    .footer-socials a { background: #1a3550; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; color: white; }

    .footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #1a3550; padding-top: 20px; font-size: 12px; color: #94a3b8; }
    .footer-legal a { color: #94a3b8; text-decoration: none; }

    @media (max-width: 900px) {
        .footer-cta-content { flex-direction: column; text-align: center; }
        .footer-main { flex-wrap: wrap; }
    }

    .cert-logo-placeholder img{
        width: 100px;

    }

    .footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
}

.empire_products_wrapper {
    padding: 30px 20px 60px; 
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
}

.empire_products_header {
    text-align: center;
    margin-bottom: 40px;
}

.empire_products_subtitle {
    color: #4a90e2;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.empire_products_main_title {
    font-size: 2.5rem;
    margin: 10px 0;
}

.empire_products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.empire_products_card {
    background: #ffff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #0c183a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.empire_products_card:hover {
    transform: translateY(-5px);
}

.empire_products_card_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.empire_products_card_title {
    font-size: 1.5rem;
    margin: 0;
    color: #0c183a;
}

.empire_products_icon_arrow {
   background: #0c183a;
   color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.empire_products_image_wrapper {
    margin-top: 20px;
    text-align: center;
}

.empire_products_image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empire_products_main_title { font-size: 1.8rem; }
}

 .emp-about-redesign {
        position: relative;
        padding: 80px 20px;
        color: white;
        overflow: hidden;
    }
    .emp-about-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 59, 138, 0.708) 100%), 
                              url('../assets/images/empireBuilding.png');
        background-size: cover;
        background-position: center;
        opacity: 0.95;
    }
    .emp-about-content {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        z-index: 1;
    }
    .emp-about-subtitle {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.875rem;
        font-weight: 600;
    }
    .emp-about-heading {
        font-size: 2.5rem;
        margin: 15px 0;
        line-height: 1.2;
    }
    .emp-about-desc {
        font-size: 1.1rem;
        color: #e2e8f0;
        margin-bottom: 20px;
        max-width: 800px;
        line-height: 1.6;
    }
    .emp-about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    .emp-stat-item {
        border-left: 2px solid #60a5fa;
        padding-left: 15px;
    }
    .emp-stat-val {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .emp-stat-lbl {
        font-size: 0.8rem;
        color: #fff;
    }
    .emp-about-cta {
        background: #002b5c;
        color: white;
        padding: 12px 30px;
        border-radius: 6px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }
    .emp-about-cta:hover { background: #3b82f6; }

    @media (max-width: 768px) {
        .emp-about-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .emp-about-heading { font-size: 2rem; }
    }

    .emp-solutions-section {
        background-color: #ffffff;
        padding: 80px 20px;
        
        color: #002b5c;
    }

    .emp-solutions-container {
        max-width: 1240px;
        margin: 0 auto;
    }

    /* Section Header */
    .emp-solutions-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 50px auto;
    }

    .emp-solutions-badge {
        display: inline-block;
        background-color: rgba(0, 43, 92, 0.08);
        color: #002b5c;
        font-size: 0.8125rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 6px 16px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .emp-solutions-title {
        color: #002b5c;
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: -0.02em;
        margin: 0 0 16px 0;
    }

    .emp-solutions-subtitle {
        color: #64748b;
        font-size: 1.125rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Grid Layout */
    .emp-solutions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    /* Reference Image Style Cards */
    .emp-sol-card {
        background-color: #f1f4f8;
        border-radius: 28px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    /* Card Image Wrapper */
    .emp-sol-img-wrapper {
        position: relative;
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        border-radius: 20px;
        overflow: hidden;
    }

    .emp-sol-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* Card Footer (Title + Circular Button) */
    .emp-sol-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 8px;
    }

    .emp-sol-name {
        color: #002b5c;
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.35;
    }

    /* Circular Navigation Button */
    .emp-sol-circle-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 50%;
        background-color: #002b5c;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        cursor: pointer;
    }

    .emp-sol-arrow {
        stroke: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .emp-solutions-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .emp-solutions-title {
            font-size: 2.1rem;
        }
        .emp-sol-img-wrapper {
            height: 240px;
        }
    }

    @media (max-width: 680px) {
        .emp-solutions-section {
            padding: 50px 16px;
        }
        .emp-solutions-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .emp-solutions-title {
            font-size: 1.75rem;
        }
        .emp-solutions-subtitle {
            font-size: 1rem;
        }
        .emp-sol-card {
            padding: 20px;
            border-radius: 24px;
        }
        .emp-sol-img-wrapper {
            height: 220px;
        }
        .emp-sol-name {
            font-size: 1.15rem;
        }
        .emp-sol-circle-btn {
            width: 42px;
            height: 42px;
            min-width: 42px;
        }
    }

      /* Section Container */
        .emp-contact-section {
            padding: 80px 20px 80px;
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
           
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .emp-contact-container {
            max-width: 1220px;
            width: 100%;
            margin: 0 auto;
        }

        /* Section Header */
        .emp-contact-header {
            margin-bottom: 48px;
            max-width: 760px;
        }

        .emp-contact-badge {
            display: inline-block;
            background-color: rgba(0, 43, 92, 0.08);
            color: #002b5c;
            font-size: 0.8125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .emp-contact-title {
            color: #002b5c;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .emp-contact-subtitle {
            color: #475569;
            font-size: 1.125rem;
            line-height: 1.6;
        }

        /* Main Grid Wrapper */
        .emp-contact-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 36px;
            align-items: start;
        }

        .emp-contact-form-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 43, 92, 0.05);
            border: 1px solid #e2e8f0;
        }

        .emp-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .emp-form-row.single {
            grid-template-columns: 1fr;
        }

        .emp-form-row.address-city {
            grid-template-columns: 2fr 1fr;
        }

        .emp-field-group {
            display: flex;
            flex-direction: column;
        }

        .emp-field-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .emp-field-label span {
            color: #e11d48;
        }

        .emp-input,
        .emp-textarea {
            /* width: 100%; */
            padding: 14px 18px;
            background-color: #f8fafc;
            border: 1.5px solid #cbd5e1;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            color: #0f172a;
            transition: all 0.25s ease;
            outline: none;
        }

        .emp-input::placeholder,
        .emp-textarea::placeholder {
            color: #94a3b8;
        }

        .emp-input:focus,
        .emp-textarea:focus {
            background-color: #ffffff;
            border-color: #002b5c;
            box-shadow: 0 0 0 4px rgba(0, 43, 92, 0.12);
        }

        .emp-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Submit Button */
        .emp-submit-btn {
            background-color: #002b5c;
            color: #ffffff;
            border: none;
            padding: 16px 36px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(0, 43, 92, 0.25);
            margin-top: 10px;
        }

        .emp-submit-btn:hover {
            background-color: #001a35;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 43, 92, 0.35);
        }

        .emp-submit-btn:active {
            transform: translateY(0);
        }

        .emp-btn-arrow {
            transition: transform 0.2s ease;
        }

        .emp-submit-btn:hover .emp-btn-arrow {
            transform: translateX(4px);
        }

        /* Success Message Box */
        .emp-success-msg {
            display: none;
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534;
            padding: 16px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 24px;
            align-items: center;
            gap: 10px;
        }

        .emp-contact-info-card {
            background: linear-gradient(145deg, #002b5c 0%, #001a35 100%);
            border-radius: 28px;
            padding: 40px;
            color: #ffffff;
            box-shadow: 0 12px 35px rgba(0, 43, 92, 0.25);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Decorative background circle */
        .emp-contact-info-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .emp-info-header {
            margin-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            padding-bottom: 20px;
        }

        .emp-info-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .emp-company-name {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }

        .emp-company-division {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Contact Details List */
        .emp-details-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 36px;
        }

        .emp-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .emp-detail-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
        }

        .emp-detail-content {
            display: flex;
            flex-direction: column;
        }

        .emp-detail-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .emp-detail-value {
            font-size: 0.95rem;
            color: #f1f5f9;
            line-height: 1.5;
            font-weight: 500;
            margin: 5px 0;
        }

        .emp-detail-value a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }

        .emp-detail-value a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }

        .emp-highlight-badge {
            background-color: #38bdf8;
            color: #001a35;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.9rem;
            display: inline-block;
        }

        /* Footer Note */
        .emp-card-footer {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.75rem;
            color: #94a3b8;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .emp-contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .emp-contact-title {
                font-size: 2.1rem;
            }
            .emp-contact-form-card,
            .emp-contact-info-card {
                padding: 32px;
                border-radius: 24px;
            }
        }

        @media (max-width: 640px) {
            .emp-contact-section {
                padding: 40px 16px;
            }
            .emp-contact-title {
                font-size: 1.75rem;
            }
            .emp-contact-subtitle {
                font-size: 1rem;
            }
            .emp-form-row,
            .emp-form-row.address-city {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .emp-contact-form-card,
            .emp-contact-info-card {
                padding: 24px;
                border-radius: 20px;
            }
            .emp-submit-btn {
                width: 100%;
            }
        }

        .footer-logo{
            width: 150px;
        }