:root {
            --primary: #0f2b5b;
            --secondary: #1e4fa3;
            --light: #f4f7fb;
            --text: #222;
        }
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: #fff;
        }

/* exp design*/
        .why-section {
            padding: 60px 20px;
            background: var(--light);
        }
        .section-title {
			text-align:center;
        }
        .section-title h2 {
            font-size: 34px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        .section-title p {
           margin: auto;
          font-size: 18px;
          color: #555;
          line-height: 1.7;
          font-weight: 500;
        }
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 8px;
        }
        .card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 8px;
            border: 1px solid #e1e6ef;
            text-align: center;
            transition: 0.3s ease;
        }
        .card:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        .card i {
            font-size: 38px;
            color: var(--secondary);
            margin-bottom: 18px;
        }
        .card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
        }
        .counter-section {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .counter-box {
            background: var(--primary);
            color: #fff;
            padding: 30px 60px;
            border-radius: 6px;
            text-align: center;
            min-width: 250px;
        }
        .counter-box h3 {
            font-size: 36px;
            margin: 0;
            font-weight: 700;
        }
        .counter-box p {
            margin-top: 5px;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        @media(max-width:768px) {
            .counter-box {
                width: 100%;
            }
        }







/* service index design*/
.product-section {
            padding: 80px 20px;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e4e8f0;
            transition: 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .product-img {
            background: #f4f7fb;
         
            text-align: center;
        }

        .product-img img {
            max-width: 100%;
            height: auto;
            transition: 0.4s;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 15px;
        }

        .product-content h3 {
            font-size: 17px;
            color: var(--primary);
        }

        .btn-view {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--secondary);
            border-radius: 25px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .btn-view:hover {
            background: var(--secondary);
            color: #fff;
        }
        .more-btn {
            text-align: center;
            margin-top: 50px;
        }
        .btn-more {
            background: var(--primary);
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-more:hover {
            background: var(--secondary);
        }

















/* Precision Test & Measurement Solutions */
.engineering-products {
            padding: 90px 20px;
            background: #f4f7fb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 34px;
            color: #0f2b5b;
            font-weight: 700;
        }

        .section-header p {
            color: #555;
            margin-top: 10px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: 0.4s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .product-image {
            position: relative;
            padding: 30px;
            background: #fff;
            text-align: center;
        }

        .product-image img {
            max-width: 100%;
        }

        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #1e4fa3;
            color: #fff;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 20px;
        }

        .product-info {
            padding: 25px;
        }

        .product-info h3 {
            font-size: 18px;
            color: #0f2b5b;
            margin-bottom: 20px;
        }

        .btn-group {
            display: flex;
            gap: 10px;
        }

        .btn-outline {
            padding: 8px 18px;
            border: 1px solid #1e4fa3;
            border-radius: 25px;
            color: #1e4fa3;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-solid {
            padding: 8px 18px;
            background: #0f2b5b;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
        }











/* key market  */
.market-section {
            padding: 100px 20px;
            background: #f4f7fb;
        }

        .container {
            max-width: 1200px;
            margin: auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #0f2b5b;
            margin-bottom: 10px;
        }

        .section-header p {
            color: #555;
            font-size: 16px;
        }

        .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .market-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            height: 320px;
        }

        .market-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s ease;
        }

        .market-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
            color: #fff;
            transition: 0.4s ease;
        }

        .market-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .market-card span {
            font-size: 14px;
            opacity: 0.85;
        }

        .market-card:hover img {
            transform: scale(1.08);
        }

        .market-card:hover .overlay {
            background: linear-gradient(to top, rgba(15, 43, 91, 0.95), rgba(0, 0, 0, 0.2));
        }









/* footer  */
.enterprise-footer {
            background: linear-gradient(135deg, #0f1f35, #162d4f);
            color: #fff;
            padding: 80px 20px 0;
            font-family: 'Segoe UI', sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 40px;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 20px;
        }

        .brand-col p {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .footer-col h4 {
            font-size: 16px;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: "";
            width: 40px;
            height: 2px;
            background: #2e6df6;
            position: absolute;
            left: 0;
            bottom: -8px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #d0d7e2;
            text-decoration: none;
            font-size: 16px;
            transition: 0.3s;
        }

        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #1f3c6b;
            border-radius: 8px;
            margin-right: 10px;
            color: #fff;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #2e6df6;
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            opacity: 0.8;
        }

        /* Responsive */
        @media(max-width:992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:600px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
















 /* PRODUCTS */
        .products {
            padding: 80px 0;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            border: 1px solid #e5e9f2;
           padding: 10px;
            transition: 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .product-card h3 {
            color: var(--primary);
        }
/* WHY */
        .why {
            background: var(--dark);
            color: #fff;
            padding: 80px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .why-box {
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
        }