        :root {
            /* Unique CSS Variable Names */
            --up-white: #ffffff;
            --up-bg-page: #ffffff;
            --up-primary-dark: #121212;
            --up-accent-gold: #c5a059;
            /* --up-text-head: "Playfair Display", serif;
            --up-text-body: "Plus Jakarta Sans", sans-serif; */
            --up-l-thickness: 2px;
            --up-l-size: 80px;
            --up-thumb-width: 80px;
            /* Reduced thumb size slightly */
            --up-shine-color: rgba(255, 255, 255, 0.4);
            --up-smooth-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }



        /* Main Container - Responsive Flex */
        .up-hero-product-layout {
            max-width: 1300px;
            /* Adjusted container width */
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
            /* Adjusted gap */
            background: transparent;
            padding: 80px 20px;
        }

        /* Left Media Section - Reduced Flex Size */
        .up-visual-showcase {
            flex: 0.8;
            /* Size choti ki gayi hai (pohle 1.2 tha) */
            display: flex;
            flex-direction: column;
            gap: 25px;
            min-width: 300px;
            /* Ensures it doesn't get too tiny */
            width: 100%;

        }

        /* Main Square Image with L-Border & Shine Wrapper */
        .up-display-canvas {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            background: #f9f9f9;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

        }

        /* Wrapper for Shine Effect */
        .up-shine-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: block;
        }

        #up-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.5s ease-in-out;
            opacity: 1;
        }

        /* Shine Animation Element */
        .up-shine-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right,
                    transparent 0%,
                    var(--up-shine-color) 50%,
                    transparent 100%);
            transform: skewX(-25deg);
            transition: 0s;
        }

        .up-shine-wrapper:hover::after {
            left: 150%;
            transition: 0.8s ease;
        }

        /* The L-Border Decoration */
        .up-signature-l-frame {
            position: absolute;
            top: -12px;
            right: -12px;
            width: var(--up-l-size);
            height: var(--up-l-size);
            border-top: var(--up-l-thickness) solid var(--up-primary-dark);
            border-right: var(--up-l-thickness) solid var(--up-primary-dark);
            pointer-events: none;
            z-index: 5;
        }


        /* The L-Border Decoration */
        .up-signature-l-frame2 {
            position: absolute;
            top: 410px;
            right: 410px;
            width: var(--up-l-size);
            height: var(--up-l-size);
            border-bottom: var(--up-l-thickness) solid var(--up-primary-dark);
            border-left: var(--up-l-thickness) solid var(--up-primary-dark);
            pointer-events: none;
            z-index: 5;
        }

        /* Thumbnail Slider Area */
        .up-carousel-mask {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 5px 0;

        }

        .up-carousel-track {
            display: flex;
            gap: 15px;
            transition: transform var(--up-smooth-transition);
            will-change: transform;
        }

        .up-thumb-cell {
            min-width: var(--up-thumb-width);
            height: var(--up-thumb-width);
            cursor: pointer;
            filter: grayscale(100%);
            opacity: 0.4;
            transition: all 0.3s ease;
            position: relative;
            background: #eee;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        }

        .up-thumb-cell.up-is-active {
            filter: grayscale(0%);
            opacity: 1;
            border-bottom: 2px solid var(--up-primary-dark);
        }

        .up-thumb-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Right Detail Section - Increased Flex Space */
        .up-content-narrative {
            flex: 1.2;
            /* Right side ko zyada space diya gaya hai */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }



        .up-main-title {
            font-family: var(--up-text-head);
            font-size: clamp(30px, 3.5vw, 40px);
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }



        .up-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
            text-align: justify;
        }

        .up-prime-button {
            background: var(--up-primary-dark);
            color: var(--up-white);
            border: none;
            padding: 18px 45px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            width: fit-content;
            transition: background 0.3s ease;
        }

        .up-prime-button:hover {
            background: var(--up-accent-gold);
        }

        /* --- Tablet & Mobile Responsive --- */
        @media (max-width: 900px) {

            .up-hero-product-layout {
                flex-direction: column;
                gap: 50px;
                align-items: left;
            }

            .up-visual-showcase {
                max-width: 450px;
                flex: 1;
            }

            .up-content-narrative {
                width: 100%;
                max-width: 550px;
                text-align: left;
                align-items: left;
                flex: 1;
            }

            .up-signature-l-frame {
                width: 60px;
                height: 60px;
                top: -10px;
                right: -10px;
            }

            .up-signature-l-frame2 {
                width: 60px;
                height: 60px;
                top: 290px;
                right: 290px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --up-thumb-width: 65px;
                --up-l-size: 50px;
            }

            .up-main-title {
                font-size: 26px;
            }

            .up-prime-button {
                width: 100%;
            }
        }

























        /* Application Section  */


        /* === UNIQUE CSS VARIABLES === */
        :root {
            --psx-bg-color: #ffffff;
            --psx-text-main: #111827;
            --psx-text-muted: #6b7280;
            --psx-accent: #2563eb;
            --psx-card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --psx-card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
            --psx-glass-bg: rgba(255, 255, 255, 0.15);
            --psx-glass-border: rgba(255, 255, 255, 0.3);
        }



        /* === HEADERS === */
        .psx-section-header {
            text-align: center;
            margin-bottom: 10px;
            padding: 0 20px;
        }

        .psx-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--psx-text-main);
            margin-bottom: 15px;
        }

        .psx-section-desc {
            color: var(--psx-text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .psx-slider-section {
            margin-bottom: 100px;
            padding: 0 1%;
        }

        /* === SLIDER CONTAINER === */
        .psx-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            cursor: grab;
        }

        .psx-container.psx-grabbing {
            cursor: grabbing;
        }

        .psx-wrapper {
            overflow: hidden;
            border-radius: 20px;
            padding: 20px 0;
        }

        .psx-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 1, 0.2, 1);
            will-change: transform;
            user-select: none;
        }

        /* === SLIDER ITEMS === */
        .psx-item {
            padding: 0 12px;
            flex-shrink: 0;
            position: relative;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .psx-item:hover {
            transform: translateY(-10px);
        }

        .psx-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
            /* border-radius: 20px; */
            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            transition: box-shadow 0.5s ease;
            background-color: #f3f4f6;
            justify-content: center;
            /* horizontal center */
            align-items: center;

        }

        .psx-item:hover .psx-img-wrap {
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        }

        .psx-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
            display: block;
            pointer-events: auto;
        }

        .psx-item:hover .psx-img-wrap img {
            transform: scale(1.08);
        }

        /* === PREMIUM GLASS OVERLAY === */
        .psx-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: var(--psx-glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--psx-glass-border);
            border-radius: 16px;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .psx-title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #ffffff;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            margin: 0;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
        }

        .psx-item:hover .psx-overlay {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .psx-item:hover .psx-title {
            transform: translateY(0);
            opacity: 1;
        }

        /* === PREMIUM STYLISH CONTROLS (WOW FEEL) === */
        .psx-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-top: 25px;
        }

        .psx-btn {
            position: relative;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #ffffff;
            color: var(--psx-text-main);
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            z-index: 1;
            touch-action: manipulation;
        }

        .psx-btn:hover:not(.psx-disabled) {
            box-shadow: none;
            color: var(--psx-text-main);
            background: #ffffff;
        }

        /* SVG Border Draw Animation */
        .psx-border-svg {
            position: absolute;
            top: -1px;
            left: -1px;
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            transform: rotate(-90deg);
            pointer-events: none;
        }

        .psx-border-svg circle {
            fill: none;
            stroke: #AD0000;
            stroke-width: 2px;
            stroke-dasharray: 180;
            stroke-dashoffset: 180;
            transition: stroke-dashoffset 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .psx-btn:hover:not(.psx-disabled) .psx-border-svg circle {
            stroke-dashoffset: 0;
        }

        /* SVG Arrow Icon inside button */
        .psx-btn .psx-arrow {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }

        .psx-btn.psx-prev:hover:not(.psx-disabled) .psx-arrow {
            transform: translateX(-4px);
        }

        .psx-btn.psx-next:hover:not(.psx-disabled) .psx-arrow {
            transform: translateX(4px);
        }

        .psx-btn.psx-disabled {
            cursor: not-allowed;
            color: #d1d5db;
            box-shadow: none;
        }

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 768px) {


            .psx-section-title {
                font-size: 2rem;
            }

            .psx-container {
                padding: 10px 20px;
            }

            .psx-item {
                padding: 0 8px;
            }

            .psx-overlay {
                opacity: 1;
                transform: translateY(0) scale(1);
                background: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(8px);
                bottom: 10px;
                left: 10px;
                right: 10px;
                padding: 15px;
            }

            .psx-title {
                transform: translateY(0);
                opacity: 1;
                font-size: 1.2rem;
            }

            .psx-item:hover {
                transform: none;
            }

            .psx-controls {
                gap: 20px;
            }

            .psx-btn {
                width: 48px;
                height: 48px;
            }

            .psx-btn .psx-arrow {
                width: 20px;
                height: 20px;
            }
        }























        /* All Prodcut Techinical Data Style  */





        /* Main Container - Flex with stretch to ensure equal height */
        #main-wrapper {
            max-width: 1260px;
            margin-bottom: 100px !important;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: stretch;
            /* Ensures columns have equal height */
        }

        /* Left Side: Table Container */
        #table-section {
            flex: 2;
            min-width: 300px;
            background: #fff;
            padding: 10px;
            border-radius: 4px;
            border: 1px solid #e0e0e0;
        }

        /* Right Side: Boxes Container */
        #side-section {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Table Styling */
        .specs-table {
            width: 100%;
            height: 100%;
            /* Table fills the container */
            border-collapse: collapse;
            font-size: 14px;
        }

        .specs-table td {
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            text-align: left;
            vertical-align: top;
        }

        .specs-table td:first-child {
            width: 35%;
            color: #666;
            font-weight: 500;
            background-color: #fafafa;
        }

        .specs-table td:last-child {
            color: #444;
        }

        /* Side Box Styling - Flex 1 makes them grow to fill height */
        .info-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 25px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            flex: 1;
            /* This makes both boxes equal height and fill the column */
            display: flex;
            flex-direction: column;
        }

        .info-box h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            border-bottom: 2px solid #AD0000;
            display: inline-block;
            padding-bottom: 5px;
            font-size: 18px;
            width: fit-content;
        }

        .info-box ul {
            list-style: none;
            margin-top: 10px;
        }

        .info-box ul li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .info-box ul li::before {
            content: "•";
            color: #AD0000;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Mobile Optimization */
        @media screen and (max-width: 900px) {
            #main-wrapper {
                flex-direction: column;
            }

            #table-section,
            #side-section {
                width: 100%;
            }

            .info-box {
                flex: none;
                /* Auto height on mobile for better scrolling */
            }

            .specs-table td {
                padding: 10px;
                font-size: 13px;
            }
        }




























        /* why chooes us section start  */



        /* CSS Variables for easy customization */
        :root {
            --wcu-primary-color: #AD0000;
            --wcu-heading-color: #1e293b;
            --wcu-text-color: #475569;
            --wcu-bg-light: #ffffff;
            --wcu-border-color: #f1f5f9;
        }

        /* Unique Section Styling */
        #unique-wcu-section {


            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .unique-wcu-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        /* Left Side: Image Container */
        .unique-wcu-image-part {
            flex: 1;
            min-width: 320px;
        }

        .unique-wcu-image-part img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: block;
        }

        /* Right Side: Content Container */
        .unique-wcu-content-part {
            flex: 1.2;
            min-width: 320px;
        }

        .unique-wcu-badge {
            display: inline-block;
            color: var(--wcu-primary-color);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .unique-wcu-title {
            font-size: 32px;
            color: #000;
            text-transform: uppercase;
            margin-bottom: 30px;
            line-height: 1.3;
            font-weight: 700;
        }

        /* Points List */
        .unique-wcu-points-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .unique-wcu-point-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #ffffff;
            border: 1px solid var(--wcu-border-color);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .unique-wcu-point-item:hover {
            border-color: var(--wcu-primary-color);
            background: #fffafa;
        }

        .unique-wcu-icon-box {
            color: var(--wcu-primary-color);
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .unique-wcu-icon-box svg {
            width: 18px;
            height: 18px;
        }

        .unique-wcu-item-text h4 {
            margin: 0;
            font-size: 14px;
            color: var(--wcu-heading-color);
            font-weight: 600;
            line-height: 1.4;
        }

        /* Mobile View Fixes */
        @media (max-width: 992px) {
            .unique-wcu-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 35px;
            }

            .unique-wcu-image-part {
                width: 100%;
                max-width: 450px;
            }

            .unique-wcu-content-part {
                width: 100%;
            }

            .unique-wcu-points-list {
                grid-template-columns: 1fr;
                /* Stacked on mobile for better fit */
            }
        }

        @media (max-width: 576px) {
            #unique-wcu-section {
                padding: 50px 15px;
            }

            .unique-wcu-title {
                font-size: 26px;
                margin-bottom: 25px;
            }

            .unique-wcu-point-item {
                padding: 10px 12px;
            }
        }




























        /* Cirtifacte section css  */


        /* Unique CSS Variables */
        :root {
            --u-cert-bg: #ffffff;
            --u-cert-card-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            --u-cert-hover-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            --u-cert-overlay: rgba(0, 0, 0, 0.85);
            --u-cert-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --u-cert-radius: 12px;
            --u-cert-accent: #2563eb;
        }


        /* Section Container */
        .u-cert-section-wrapper {
            padding: 80px 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .u-cert-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .u-cert-heading h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        /* Grid Layout: 3 in a row on desktop, 1 on mobile */
        .u-cert-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        @media (max-width: 1024px) {
            .u-cert-grid-layout {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .u-cert-grid-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Certificate Cards */
        .u-cert-card-item {
            position: relative;
            background: #fff;
            border-radius: var(--u-cert-radius);
            overflow: hidden;
            box-shadow: var(--u-cert-card-shadow);
            transition: var(--u-cert-transition);
            cursor: pointer;
            border: 1px solid #f0f0f0;
            aspect-ratio: 3 / 4.2;
            /* Vertical Certificate Ratio */
        }

        .u-cert-card-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--u-cert-hover-shadow);
        }

        .u-cert-img-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .u-cert-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--u-cert-transition);
        }

        .u-cert-modal-content img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        }

        .u-cert-close-trigger {
            position: absolute;
            top: -45px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            transition: 0.3s;
            line-height: 1;
        }

        .u-cert-close-trigger:hover {
            color: #ccc;
            transform: scale(1.2);
        }

        /* Disable scroll when modal is open */
        .u-cert-no-scroll {
            overflow: hidden;
        }





























        /* Contact section  */

        /* --- Container --- */
        .contact-container {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            margin-top: 50px !important;
        }

        /* --- Header Section --- */
        .section-header {
            text-align: center;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .accent-line {
            width: 60px;
            height: 4px;
            background-color: #AD0000;
            margin: 0 auto 15px;
            border-radius: 10px;
        }

        .section-header p {
            font-size: 1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- Grid Layout --- */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        /* --- Card Styles (Height Adjusted) --- */
        .contact-card {
            background: #ffffff;
            padding: 25px 25px;
            /* Reduced vertical padding from 40px to 25px */
            /* border-radius: 16px; */
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
        }

        /* --- Icon Styles --- */
        .icon-box {
            width: 60px;
            /* Slightly smaller icon box */
            height: 60px;
            background-color: rgba(173, 0, 0, 0.1);
            color: #AD0000;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            /* Reduced margin */
        }

        .icon-box svg {
            width: 28px;
            height: 28px;
        }

        /* --- Typography in Cards --- */
        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
            /* Reduced margin */
        }

        .card-info {
            font-size: 0.9rem;
            color: #64748b;
        }

        .info-link {
            display: block;
            color: #64748b;
            text-decoration: none;
            font-weight: 500;
            margin-top: 3px;
            transition: color 0.2s ease;
        }

        .info-link:hover {
            color: #AD0000;
        }


        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

        }




















        /* menufacuerning page chnage table accoridng img section  */


















        /* Director Desk Css Code  */


        /* Google Fonts: Playfair for Luxury, Inter for Modernity, Signature font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,800;1,400&family=Dancing+Script:wght@600&display=swap');

        :root {
            --brand-red: #AD0000;
            --deep-charcoal: #1a1a1a;
            --muted-gray: #555555;
            --bg-white: #ffffff;
            --soft-border: #f0f0f0;
        }


        /* Main Section Wrapper */
        #executive-desk-elite-v3.desk-section-wrap {
            width: 100%;
            max-width: 1400px;
            /* Outer bounds */
            padding: 60px 4%;
            background: var(--bg-white);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin: 0 auto;
        }

        .desk-container {
            max-width: 1300px;
            /* Standard content width */
            width: 100%;
            display: grid;
            grid-template-columns: 420px 1fr;
            /* Image size maintained as per previous request */
            align-items: center;
            gap: 80px;
        }

        /* Image Side Styling */
        .desk-image-frame {
            position: relative;
            z-index: 2;
        }

        .desk-image-inner {
            position: relative;
            background: #fff;
            padding: 10px;
            border: 1px solid var(--soft-border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .desk-image-inner img {
            width: 100%;
            height: 600px;
            /* Increased height from 520px to 600px */
            object-fit: cover;
            display: block;
            filter: grayscale(100%);
            transition: filter 0.5s ease, transform 0.8s ease;
        }

        .desk-image-inner:hover img {
            filter: grayscale(0%);
            transform: scale(1.03);
        }

        /* Red Accent Decoration */
        .desk-image-frame::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border-top: 4px solid var(--brand-red);
            border-left: 4px solid var(--brand-red);
            top: -18px;
            left: -18px;
            z-index: 1;
        }

        /* Content Area Styling */
        .desk-content {
            position: relative;
        }

        .desk-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: var(--brand-red);
            margin-bottom: 20px;
            display: block;
        }

        .desk-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            line-height: 1.15;
            margin-bottom: 30px;
            color: var(--deep-charcoal);
        }

        .desk-title span {
            color: var(--brand-red);
            font-style: italic;
            font-weight: 400;
        }

        .desk-quote-block {
            border-left: 4px solid var(--brand-red);
            padding-left: 25px;
            margin-bottom: 30px;
        }

        .desk-quote-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            line-height: 1.5;
            color: #333;
            font-style: italic;
        }

        .desk-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--muted-gray);
            margin-bottom: 40px;
            max-width: 95%;
        }

        /* Footer Info */
        .desk-footer {
            display: flex;
            align-items: left;
            gap: 40px;
        }

        .desk-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: var(--deep-charcoal);
            margin-bottom: 4px;
        }

        .desk-info p {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--brand-red);
            font-weight: 600;
        }

        .desk-sign {
            font-family: 'Dancing Script', cursive;
            font-size: 38px;
            color: var(--deep-charcoal);
            opacity: 0.9;
            border-bottom: 2px solid var(--brand-red);
            padding-bottom: 4px;
        }

        /* Responsive Optimization */
        @media (max-width: 1024px) {

            #executive-desk-elite-v3.desk-section-wrap {
                padding: 60px 5%;
            }

            .desk-container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: left;
            }

            .desk-image-frame {
                max-width: 380px;
                margin: 0 auto;
            }

            .desk-image-inner img {
                height: 480px;
            }

            .desk-quote-block {
                border-left: none;
                border-top: 3px solid var(--brand-red);
                padding: 25px 0 0 0;
            }

            .desk-title {
                font-size: 38px;
            }

            .desk-description {
                margin-inline: auto;
            }

            .desk-footer {
                flex-direction: column;
                gap: 20px;
            }
        }























        /* Prodcut page heading  */


        /* Main Wrapper */
        #unique-header-container {
            text-align: center;
            padding: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;

        }

        /* Bold Heading Style */
        .bold-heading-text {
            font-size: 40px !important;
            /* Desktop Size */
            font-weight: 800;
            color: #000000;
            /* Pure Black */
            text-transform: uppercase;
            letter-spacing: 2px;
            /* Modern wide spacing */
            line-height: 1;
            margin: 0;

        }

        /* Premium Underline */
        .premium-underline {
            width: 100%;
            max-width: 300px;
            /* Line ki max width */
            height: 3px;
            background: #AD0000;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* --- Mobile Version Fix (Responsive) --- */
        @media (max-width: 1024px) {
            .bold-heading-text {
                font-size: 3.5rem;
                letter-spacing: 4px;
            }
        }

        @media (max-width: 768px) {
            .bold-heading-text {
                font-size: 1.5rem !important;
                letter-spacing: 3px;
            }

            .premium-underline {
                max-width: 250px;
                height: 2px;
            }
        }

        @media (max-width: 480px) {
            .bold-heading-text {
                font-size: 1.5rem !important;
                letter-spacing: 2px;
            }

            .premium-underline {
                max-width: 180px;
            }
        }











































        /* inspection new css  */

        /* CSS Variables */
        :root {
            --pg-white: #ffffff;
            --pg-black: #000000;
            --pg-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            --pg-radius: 24px;
        }



        .pg-section-container {
            max-width: 1350px;
            margin: 80px auto;
            padding: 0 20px;
        }



        /* Gallery Grid Logic */
        .pg-layout-stack {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pg-row {
            display: flex;
            gap: 25px;
        }

        .pg-card {
            position: relative;
            background: var(--pg-white);

            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
            flex: 1;
            border: 1px solid #f0f0f0;
        }

        /* Hover effect rakha hai taaki interactiveness bani rahe */
        .pg-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        /* 1st Row Sizing: 1st Image Large */
        .pg-row-top .pg-card-hero {
            flex: 2;
        }

        /* Image Ratios */
        .pg-media-box {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: #f9f9f9;
        }

        /* Square Ratio for 3 bottom images and 2nd top image */
        .pg-ratio-square {
            aspect-ratio: 1 / 1;
        }

        .new{
            height: 528px !important;
        }

        /* Hero card cinematic ratio */
        .pg-card-hero .pg-media-box {
            aspect-ratio: 16 / 10;
        }

        .pg-media-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .pg-card:hover img {
            transform: scale(1.06);
        }

        .pg-label-box {
            padding: 20px;
            background: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: center;
            text-transform: uppercase;
            color: black;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .pg-row {
                flex-direction: column;
            }

            .pg-row-top .pg-card-hero {
                flex: none;
            }

            .pg-card-hero .pg-media-box {
                aspect-ratio: 4 / 3;
            }

            .pg-ratio-square {
                aspect-ratio: 4 / 3;
            }

            .pg-section-container {
                margin: 40px auto;
            }
        }




















        /* manufacring css  */


       

        /* Unique Section Wrapper */
        #custom-product-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

     
       
        /* Grid Container */
        .card-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        /* Unique Card Class */
        .premium-feature-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #eee;
        }

        .premium-feature-card:hover {
            transform: translateY(-5px);
        }

        /* Square Image Wrapper */
        .card-image-container {
            width: 100%;
            aspect-ratio: 1 / 1; 
            overflow: hidden;
        }

        .card-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Content & Table Box */
        .card-content-box {
            padding: 15px;
        }

        /* Table Styling */
        .data-info-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }

        .data-info-table th, 
        .data-info-table td {
            padding: 6px 8px;
            text-align: left;
            border-bottom: 1px solid #f2f2f2;
        }

        .data-info-table th {
            background-color: #f8f9fa;
            color: #000;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
        }

        .val-text {
            color: #2c3e50;
            font-weight: 500;
        }

        .status-active {
            color: #27ae60;
            font-weight: bold;
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            #custom-product-section {
                margin: 15px auto;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }

        }















/* left right  */



    

       

        /* Main Section Wrapper */
        #company-overview-section {
            width: 100%;
            padding: 20px 0;
        }

        /* Container for the Two Columns */
        .overview-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
            margin-top: -50px;
            margin-bottom: 50px;
        }

        /* Common Card Styling */
        .overview-content-card {
            flex: 1 1 calc(50% - 15px); /* Half width minus gap */
            min-width: 300px;
            background-color: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Proper shadow for card effect */
            border: 1px solid #eaeaea;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Hover effect for better UI */
        .overview-content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        /* Heading Styling */
        .card-section-heading {
            color: #b21f1f; /* Deep red color from the image */
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Arrow styles inside headings */
        .heading-arrow {
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Paragraph Styling */
        .card-text-content {
            margin-bottom: 20px;
            font-size: 1rem;
            color: #666;
            text-align: justify;
        }

        .card-text-content:last-child {
            margin-bottom: 0;
        }

        /* List Styling */
        .infrastructure-features-list {
            margin-left: 20px;
            margin-bottom: 25px;
        }

        .feature-item {
            margin-bottom: 12px;
            color: #666;
            position: relative;
        }

        /* Responsive Design for Tablets */
        @media screen and (max-width: 992px) {
            .overview-content-card {
                padding: 30px; /* Reduce padding slightly on medium screens */
            }
        }

        /* Responsive Design for Mobile Devices */
        @media screen and (max-width: 768px) {
            
            
            .overview-cards-container {
                flex-direction: column;
                gap: 20px;
            }

            .overview-content-card {
                flex: 1 1 100%;
                padding: 25px 20px;
            }
            
            .card-section-heading {
                font-size: 1rem; /* Slightly smaller heading on mobile */
            }
        }













                /* Base Styles */
        

       

        /* Container for the cards */
        #profile-main-layout {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        /* Minimal Card Styling */
        .content-card-simple {
            background-color: #ffffff;
            border: none; /* Removed border */
            border-radius: 12px; /* Soft edges to remove sharp look */
            padding: 40px;
            /* Subtle soft shadow instead of sharp lines */
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            display: flex;
            flex-direction: column;
        }

        /* Heading Styles - Removed colors and highlights */
        .section-title-minimal {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111;
            letter-spacing: -0.02em;
            position: relative;
        }

        /* Subtle divider line instead of thick colors */
        .section-title-minimal::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: #e5e7eb;
            margin-top: 10px;
        }

        /* Text content */
        .description-text-clean {
            font-size: 0.95rem;
            color: #4b5563;
            margin: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            
            
            #profile-main-layout {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
            }

            .content-card-simple {
                padding: 30px;
            }


            .project-details-section{
                margin-top: -200px !important;
            }
        }



















/* brand section  */


       /* Root Variables */
        :root {
            --bg-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.4);
            --glass-border: rgba(255, 255, 255, 0.6);
            --text-dark: #1a1a1a;
            --transition-speed: 0.6s;
            --slide-gap: 20px;
        }

       

        /* Main Section */
        #infinite-glass-slider-section {
            width: 100%;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        .infinite-title {
            font-size: 28px;
            font-weight: 800;
            color: #222;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Carousel Viewport */
        .infinite-viewport {
            width: 95%;
            max-width: 1300px;
            padding-bottom: 80px; /* Space for name reveal */
            overflow: hidden;
            position: relative;
        }

        /* The Moving Track */
        .infinite-track {
            display: flex;
            transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        /* Slide Item */
        .flag-slide-card {
            min-width: calc(25% - var(--slide-gap));
            margin: 0 calc(var(--slide-gap) / 2);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Image Box - Removed Border Radius */
        .flag-img-container {
            width: 95%;
            aspect-ratio: 3 / 2;
            border-radius: 0; /* Border Radius Removed */
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            cursor: pointer;
            z-index: 2;
            border: 1px solid #eee;
        }

        .flag-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Glass Effect Name Box */
        .glass-label-bottom {
            margin-top: 10px;
            padding: 10px 20px;
            min-width: 130px;
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            
            /* Hidden by default */
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            z-index: 1;
        }

        /* Hover Effects */
        .flag-slide-card:hover .flag-img-container img {
            transform: scale(1.08);
        }

        .flag-slide-card:hover .glass-label-bottom {
            opacity: 1;
            transform: translateY(25px); /* Reveals outside at the bottom */
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .flag-slide-card { min-width: calc(33.33% - var(--slide-gap)); }
        }

        @media (max-width: 768px) {
            .flag-slide-card { min-width: calc(50% - var(--slide-gap)); }
            .infinite-title { font-size: 22px; }
        }

        @media (max-width: 480px) {
            .flag-slide-card { min-width: calc(100% - var(--slide-gap)); }
        }












        /* enginring and development section  */

     
        #unique-engineering-section-9021 {
            padding: 80px;
            background-color: #ffffff;
            font-family: 'Arial', sans-serif; /* Aap isko apne font se change kar sakte hain */
            box-sizing: border-box;
        }

        /* Container - Flexbox layout */
        .eng-dev-flex-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        /* Left Side: Text Content */
        .eng-dev-text-wrapper {
            flex: 1; /* Takes half the space */
        }

        .eng-dev-main-heading {
            font-size: 2rem;
            color: #000;
            margin-bottom: 20px;
            margin-top: 0;
            font-weight: 700;
            line-height: 1.2;
        }

        .eng-dev-paragraph {
            font-size: 1.15rem;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Right Side: Image Content */
        .eng-dev-image-wrapper {
            flex: 1; /* Takes half the space */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .eng-dev-feature-image {
            width: 100%;
            max-width: 600px; /* Restrict max width */
            aspect-ratio: 1 / 1; /* Makes the image a perfect square */
            border-radius: 12px; /* Rounded corners */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Subtle 3D shadow effect */
            object-fit: cover; /* Ensures the image doesn't stretch */
            transition: transform 0.3s ease; /* Hover effect ke liye */
        }

        .eng-dev-feature-image:hover {
            transform: translateY(-5px); /* Image par hover karne se thoda upar aayegi */
        }

        /* === Responsive Design (Mobile & Tablet) === */
        @media screen and (max-width: 992px) {
            .eng-dev-flex-container {
                gap: 40px;
            }
            .eng-dev-main-heading {
                font-size: 2.4rem;
            }
            .eng-dev-paragraph {
                font-size: 1.1rem;
            }
        }

        @media screen and (max-width: 768px) {
            /* Mobile view me container ko column wise stack karna */
            .eng-dev-flex-container {
                flex-direction: column;
                text-align: center; /* Center text on mobile */
                gap: 30px;
            }

            #unique-engineering-section-9021 {
                padding: 50px 20px;
            }

            .eng-dev-main-heading {
                font-size: 2rem;
            }

            .eng-dev-paragraph {
                font-size: 1rem;
            }

            .eng-dev-image-wrapper {
                width: 100%;
            }
        }























/* after update  */

.breadcrumb-sub-title h1{
    font-size: 30px !important;
}

.shape-image{
    display: none !important;
}



.bar-shape{
    display: none !important;
}