  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #d32f2f;
            --primary-red-1: #c0392b;
            --accent-orange: #e67e22;
            --dark-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #ccc;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ====== HEADER ====== */
        header {
            background: #edeaf4;
            border-bottom: 2px solid #e0e0e0;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar {
            padding: 0 40px;
        }

        .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .logo-text {
            color: #000;
        }

        .logo-text .main {
            display: block;
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text .sub {
            color: var(--primary-red);
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .navbar-nav .nav-link {
            color: #000 !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: var(--transition);
            font-size: 14px;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* ====== HERO SECTION WITH SLIDER ====== */
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(52 29 29 / 50%), rgb(83 68 68 / 20%));
            z-index: 1;
        }

        .hero-slide img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 600px;
            padding: 45px;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary-red {
            background: var(--primary-red);
            color: #fff;
            padding: 14px 35px;
            border: 2px solid var(--primary-red);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-primary-red::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary-red:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary-red:hover {
            background: #b71c1c;
            border-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
        }

        .btn-secondary-white {
            background: transparent;
            color: #fff;
            padding: 14px 35px;
            border: 2px solid #fff;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-secondary-white::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fff;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-secondary-white:hover::before {
            left: 0;
        }

        .btn-secondary-white:hover {
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 60px;
            display: flex;
            gap: 10px;
            z-index: 2;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .dot.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
            border-color: var(--primary-red);
            box-shadow: 0 0 15px rgba(211, 47, 47, 0.6);
        }

        /* ====== FEATURES SECTION ====== */
        .features-section {
            background: #e1dce6;
            padding: 50px 0;
        }
 
        .feature-box {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: center;
            padding:20px 6px 15px 6px;;
            border-radius: 8px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            height: 120px;

        }
        .feature-icon-custom h5{
            font-size:18px !important;
        }
        .feature-icon-custom{
            text-align:left;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 30px;
            color: var(--primary-red);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .feature-box:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            animation: none;
        }

        .feature-box h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .feature-box p {
            font-size: 14px;
            color: #000000;
        }

        /* ====== PRODUCTS SECTION ====== */
        .products-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--text-dark);
            position: relative;
            animation: fadeInDown 0.8s ease-out;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            border-radius: 2px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .products-slider {
            position: relative;
            margin-bottom: 50px;
            overflow: hidden;
        }

        .products-container {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 10px;
        }

        .product-card {
            flex: 0 0 calc(25% - 15px);
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            animation: scaleIn 0.6s ease-out;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(211, 47, 47, 0.3));
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card:hover img {
            transform: scale(1.1) rotate(2deg);
        }

        .product-info {
            /*position: absolute;*/
            bottom: 0;
            left: 0;
            right: 0;
            /*background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 60%);*/
            color: #fff;
            padding: 30px 20px;
            padding-top: 60px;
            transition: var(--transition);
            z-index: 3;
        }

        .product-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .product-info ul {
            list-style: none;
            font-size: 13px;
        }

        .product-info li {
            margin: 6px 0;
            padding-left: 15px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .product-info li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        .product-card:hover .product-info li {
            transform: translateX(5px);
        }

        .view-all-btn {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-btn a {
            background: linear-gradient(135deg, var(--primary-red), #b71c1c);
            color: #fff;
            padding: 14px 45px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            font-size: 15px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .view-all-btn a::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .view-all-btn a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }

        .view-all-btn a:hover::after {
            transform: translateX(5px);
        }

        /* ====== INDUSTRIES SECTION ====== */
        .industries-section {
            padding: 80px 0;
            background: #E1DCE6;
            position: relative;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .industry-card {
            position: relative;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: slideInUp 0.6s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .industry-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3);
        }

        .industry-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .industry-card:hover img {
            transform: scale(1.15) rotate(-2deg);
        }

        .industry-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(211, 47, 47, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            text-align: center;
            transition: var(--transition);
        }

        .industry-card:hover .industry-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(211, 47, 47, 0.6));
        }

        /* ====== OEM SECTION ====== */
        .oem-section {
            padding: 80px 0;
            background: #fff;
        }

        .oem-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .oem-image {
            animation: slideInLeft 0.8s ease-out;
        }

        .oem-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .oem-image:hover img {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 20px 50px rgba(211, 47, 47, 0.25);
        }

        .oem-text {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .oem-text h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
            letter-spacing: 0.5px;
        }

        .oem-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .oem-features li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 16px;
            color: #444;
            transition: var(--transition);
            border-left: 3px solid transparent;
            padding-left: 25px;
        }

        .oem-features li:before {
            content: '●';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: 700;
            font-size: 20px;
            animation: checkMark 0.6s ease-out backwards;
            list-style-type: disc;
            top:11px;
        }

        @keyframes checkMark {
            0% {
                transform: scale(0) rotate(-45deg);
                opacity: 0;
            }
            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        .oem-features li:hover {
            transform: translateX(2px);
            /*border-left-color: var(--primary-red);*/
            background: rgba(211, 47, 47, 0.05);
            padding-left: 30px;
        }

        .btn-oem {
            background: linear-gradient(135deg, var(--primary-red), #b71c1c);
            color: #fff;
            padding: 14px 35px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-oem::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .btn-oem:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }

        .btn-oem:hover::after {
            transform: translateX(5px);
        }

        /* ====== FOOTER ====== */
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary-red);
        }

        .footer-wrapper {
            display: grid;
            grid-template-columns: 1fr 4fr;
            gap: 60px;
            align-items: flex-start;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
        }

        .logo-text-footer {
            color: #fff;
        }

        .logo-text-footer .main {
            display: block;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1px;
        }

        .logo-text-footer .sub {
            color: var(--primary-red);
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer-col ul {
            list-style: none;
            padding:0px;
        }

        .footer-col ul li {
            margin: 12px 0;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            transition: var(--transition);
            padding-left: 0;
        }

        .footer-col ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .footer-col ul li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .footer-col ul li a:hover::before {
            width: 100%;
        }

        .footer-col ul li a:hover {
            color: var(--primary-red);
        }

        .footer-col ul li:hover {
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: var(--text-light);
        }

        .footer-left {
            animation: fadeInLeft 0.8s ease-out;
        }

        .footer-right {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
            animation: fadeInRight 0.8s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .footer-contact:hover {
            color: var(--primary-red);
            transform: translateX(3px);
        }

        .footer-contact i {
            /*color: var(--primary-red);*/
            font-size: 16px;
        }

        .footer-contact a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary-red);
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 1200px) {
            .product-card {
                flex: 0 0 calc(33.333% - 15px);
            }

            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-wrapper {
                grid-template-columns: 1fr 3fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: repeat(5, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .hero-content {
                padding: 40px 30px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .product-card {
                flex: 0 0 calc(50% - 15px);
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .oem-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .footer-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-right {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 30px 20px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .hero-buttons {
                gap: 10px;
            }

            .btn-primary-red, .btn-secondary-white {
                padding: 12px 25px;
                font-size: 14px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 40px;
            }

            .product-card {
                flex: 0 0 100%;
            }

            .industries-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .industry-card {
                height: 150px;
            }

            .oem-text h2 {
                font-size: 28px;
            }

            .features-section {
                padding: 30px 0;
            }

            .feature-box {
                flex-direction: column;
                text-align: center;
            }

            .hero-dots {
                bottom: 20px;
                left: 20px;
            }

            .footer-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 25px;
                padding-bottom: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-col h5 {
                font-size: 14px;
            }

            .footer-col ul li {
                font-size: 13px;
            }
        } 
        
.logo-text-footer img{       
    width: 250px;
    top: -15px;
    position: relative;
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a2e;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
}

/* Grid Layout - 4 cards in a row */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card - Fixed Height */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.product-info {
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
    border-left: 3px solid #e67e22;
    padding-left: 12px;
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.product-info ul li {
    padding: 2px 0;
    color: #000000;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.product-info ul li:before {
    content: "•";
    color: #C0392B;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 10px;
    top: -3px;
}

/* View All Button */
.view-all-btn {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn a {
    display: inline-block;
    padding: 12px 35px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e67e22;
}

.view-all-btn a:hover {
    background: transparent;
    color: #e67e22;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        height: auto;
        min-height: 360px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .product-info ul li {
        font-size: 0.85rem;
        padding: 5px 0 5px 20px;
    }
}

    /* Products Section */
    .products-section {
        padding: 80px 20px;
        background: #EDEAF4;
    }

    .container-fluid {
        width: 100%;
        max-width: 1800px;
        margin: 0 auto;
    }
    @media (max-width: 1400px) {
    .container-fluid {
        max-width: 1200px;
    }
}
    

    .section-title {
        text-align: left;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #1a1a2e;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -20px;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #e67e22;
    }

    /* Swiper Container */
    .swiper-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        width: auto;
        flex-shrink: 0;
    }

    /* Product Card */
    .product-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        min-height: 420px;
        width: 280px;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    /* Product Image */
    .product-image-wrapper {
        /*height: 220px;*/
        background: #d3d3d3;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }

    .product-card:hover .product-image {
        transform: scale(1.05);
    }

    /* Product Heading - BLACK BG, WHITE TEXT */
    .product-heading {
        background: #000;
        padding: 14px 15px;
        border-bottom: none;
        flex-shrink: 0;
        margin: 0;
    }

    .product-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.2;
    }

    /* Product List - PURPLE BG */
    .product-info {
        padding: 0;
        background: #EDEAF4;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .product-list {
        list-style: none;
        padding: 0 15px;
        margin: 0;
    }

    .product-list li {
        padding: 5px 0;
        color: #000;
        font-size: 0.93rem;
        position: relative;
        padding-left: 16px;
        font-weight: 500;
        line-height: 1.3;
    }

    .product-list li:before {
        content: "•";
        color: #000;
        font-weight: bold;
        font-size: 0.8rem;
        position: absolute;
        left: 4px;
        top: 6px;
    }

    /* Swiper Navigation Buttons */
    .swiper-button-prev,
    .swiper-button-next {
        background: #c0392b;
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        top: 44%;
        transform: translateY(-50%);
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: #a93226;
        box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
        font-weight: bold;
    }

    /* Swiper Pagination */
    .swiper-pagination {
        bottom: -50px !important;
    }

    .swiper-pagination-bullet {
        background: #c0392b;
        opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
        background: #c0392b;
        opacity: 1;
    }

    /* View All Button */
    .view-all-btn {
        text-align: center;
        margin-top: 80px;
    }

    .btn-view-all {
        display: inline-block;
        padding: 14px 40px;
        background: #c0392b;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        letter-spacing: 0.5px;
    }

    .btn-view-all:hover {
        background: #a93226;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    }

    .arrow {
        margin-left: 8px;
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .product-card {
            width: 220px;
        }

        .swiper-container {
            padding: 0 40px;
        }
    }

    @media (max-width: 768px) {
        .products-section {
            padding: 50px 20px;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .swiper-container {
            padding: 0 40px;
        }

        .product-card {
            width: 270px;
            min-height: 450px;
        }

        .product-image-wrapper {
            height: 180px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            width: 35px;
            height: 35px;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .swiper-container {
            padding: 0 30px;
        }
    }

.custom-oem-features {
    padding-left:0px;
} 


.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  display: block;
}

/* Overlay full center */
.industry-overlay {
  position: absolute;
  inset: 0; /* full cover */
  background: rgba(0,0,0,0.5);
  
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
}

/* Icon */
.industry-overlay i {
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px; /* 👈 gap between icon & text */
}

/* Text */
.industry-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.industry-card{
    height:120px;
}

/*---------responsive css start--------------*/

/* ====== ONLY ONE MEDIA QUERY - 768px ====== */
@media (max-width: 768px) {
    
    .navbar {
        padding: 0 8px;
    }
    .logo-text img{
        width:200px !important;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .hero-buttons {
        display: block;
    }
    
    .btn-primary-red,
    .btn-secondary-white {
        padding: 8px 16px;
        font-size: 12px;
        text-align: center;
    }
    
    .features-section {
        padding: 30px 0;
    }
    
    .features-section .col-md-3 {
        width: 50%;
        margin-bottom: 15px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        height: 200px;
    }
    
    .feature-icon-custom {
        text-align: center;
    }
    
    .section-title {
        font-size: 22px;
        text-align: center !important;
        margin-bottom: 40px;
    }
    
    .section-title:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px;
    }
    
    .products-section {
        padding: 40px 15px;
    }
    
    .swiper-container {
        padding: 0 10px;
    }
    
    .product-card {
        width: 100%;
        min-height: 380px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .product-heading {
        padding: 10px 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-list li {
        font-size: 11px;
        padding: 3px 0 3px 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 28px;
        height: 28px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px;
    }
    
    .btn-view-all {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-card {
        height: 100px;
    }
    
    .industry-overlay i {
        font-size: 18px;
    }
    
    .industry-overlay span {
        font-size: 11px;
    }
    
    .oem-section {
        padding: 40px 15px;
    } 
    
    .oem-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .oem-text h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .oem-features li {
        font-size: 13px;
    }
    
    .btn-oem {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .logo-text-footer img {
        width: 180px;
        display: block;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    .industries-section {
        padding:40px 0;
    }
}

        /* Contact Page Additional Styles */
        .page-banner {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-top: 0;
        }

        .page-banner h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-banner p {
            font-size: 18px;
            opacity: 0.9;
        }

        .contact-section {
            padding: 80px 0;
            background: #EDEAF4;
        }

        .contact-info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: #d32f2f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon i {
            font-size: 30px;
            color: white;
        }

        .contact-info-card h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .contact-info-card p {
            color: #000000;
            margin-bottom: 5px;
        }

        .contact-info-card a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }

        .contact-form-wrapper .subtitle {
            color: #000000;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 5px;
        }

        .form-control, .form-select {
            height: 50px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            padding: 10px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: #d32f2f;
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }

        textarea.form-control {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #d32f2f;
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 150px;
            margin-right: 5px;
        }

        .submit-btn:hover {
            background: #b71c1c;
            transform: translateY(-2px);
        }

        .map-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-top: 50px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 350px;
            border: 0;
        }

        .business-hours {
            background: #fff3e0;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .business-hours i {
            color: #d32f2f;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 50px 0;
            }
            .page-banner h1 {
                font-size: 32px;
            }
            .contact-section {
                padding: 50px 0;
            }
            .contact-form-wrapper {
                padding: 25px;
                margin-top: 30px;
            }
        }

         /* Hero Section about page */
        .hero-section {
            background-image: url("../img/image.png");
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            color: #ffffff;
            padding: 60px 20px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(192, 57, 43, 0.1) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: -1px;
            text-transform: uppercase;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-description {
            font-size: 16px!important;
            max-width: 900px;
            line-height: 1.7;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        
        /* Main Content */
        .main-content {
            background: url('../img/background.png');
            padding: 60px 20px;
        }

        .section-title-about {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title-about::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-red-1);
        }

        .intro-text {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 50px;
            color: #000000;
        }
        
                /* Certification Grid */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 15px;
            /*margin-bottom: 60px;*/
        }

        .cert-card {
            background: #EDEAF3;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red-1), var(--accent-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .cert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-red-1);
        }

        .cert-card:hover::before {
            transform: scaleX(1);
        }

        .cert-icon {
            width: 60px;
            height: 60px;
            /*background: linear-gradient(135deg, var(--primary-red-1), var(--accent-orange));*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 1.5em;
            font-weight: bold;
        }

        .cert-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 15px;
        }

        .cert-description { 
            font-size: 0.95em;
            line-height: 1.7;
            color: #000;
            font-weight:400;
        }

        /* Two Column Section */
        .two-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
            align-items: start;
        }

        .feature-box-about {
            background: #EDEAF3;
            padding: 20px;
            border-radius: 2px;
            /*border-left: 5px solid var(--primary-red-1);*/
        }

        .feature-box-about h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 20px;
        }

        .feature-list {
            /*list-style: none;*/
        }

        .feature-list li {
            padding: 0px 0 4px 5px;
            position: relative;
            font-size: 0.95em;
            color: #000000;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            color: var(--primary-red-1);
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Request Form Section */
        .request-section {
            background: transparent;
            /*color: #ffffff;*/
            padding: 15px 35px;
            border-radius: 2px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

        .request-section::before {
            /*content: '';*/
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(192, 57, 43, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .request-content {
            position: relative;
            z-index: 2;
        }

        .request-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 5px;
            margin-top: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        .form-group input,
        .form-group textarea {
            padding: 6px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            /*background: rgba(255, 255, 255, 0.1);*/
            color: #000;
            font-size: 0.95em;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red-1);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: var(--primary-red-1);
            color: #ffffff;
            padding: 10px 10px;
            border: none;
            border-radius: 1px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #a52a1f;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
        }

        .contact-info-about {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
        }

        /* Commitment Section */
        .commitment-section {
            background: var(--bg-light);
            /*padding: 50px;*/
            border-radius: 12px;
            margin: 40px 0;
        }

        .commitment-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2em;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .commitment-section p {
            font-size: 1.05em;
            line-height: 1.8;
            color: #000000;
        }

        /* Three Column Grid */
        .three-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .service-card {
            background: #ffffff;
            padding: 35px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--primary-red-1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3em;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #000000;
            line-height: 1.6;
        }
        
                /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2em;
            }

            .two-column,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .cert-grid {
                grid-template-columns: 1fr;
            }

            .request-section,
            .commitment-section {
                padding: 30px 20px;
            }
        }
        
        .features-strip {
            background: #2a2a2a;
            padding: 30px 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: white;
            max-width: 360px;
        }

        .icon-wrapper {
            flex-shrink: 0;
        }

        .icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .feature-content p {
            font-size: 13px;
            font-weight: 400;
            color: #d0d0d0;
            line-height: 1.4;
        }

        @media (max-width: 1200px) {
            .features-strip {
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .features-strip {
                flex-direction: column;
                gap: 40px;
                padding: 40px 20px;
            }

            .feature-item {
                max-width: 100%;
            }
            .mob {
                flex-direction: column;
            }
            .contact-item {
                margin-top:10px;
            }
        }

.icon-img img{
    height: 60px;
    width: 100%;
    object-fit: cover;
}

.contact-item a{
    color:#000000;
    text-decoration:none;
}
   
  .section-subtitle{
      padding-top:20px;
  }
  
  
  
  /*================Product page css start========================*/
  
  
        .breadcrumb-nav {
            background: #f5f5f7;
            padding: 12px 30px;
        }

        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: #000000;
        }

        .breadcrumb-container a {
            color: #000000;
            text-decoration: none;
        }

        .breadcrumb-container a:hover {
            color: #c41e3a;
        }
        
        .main-cont {
            padding: 20px 40px;
        }

        .hero-section-certification {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        @media (max-width: 768px) {
         .hero-section-certification {
            display: flex;
            flex-direction: column;
            /*grid-template-columns: 1fr 1fr;*/
            gap: 30px;
            margin-bottom: 50px;
        }   
        .cert-badge {
            flex-direction: column;
        }
        .certification-badges {
            justify-content: space-between;
        }
        .feature-grid {
            display: flex !important;
            flex-wrap: wrap;
        }
        .industry-columns {
            display: flex !important;
            flex-wrap: wrap;
        } 
        .description-section {
            flex-wrap: wrap;
        }
        .main-cont {
            padding: 20px 10px;
        }
    }

        .product-gallery {
            display: flex;
            gap: 20px;
        }

        .main-product-image {
            flex: 1;
            position: relative;
        }

        .main-product-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .gallery-inquiry-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .gallery-inquiry-btn:hover {
            background: #a01828;
        }

        .gallery-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .thumbnail-grid {
            display: grid;
            grid-template-rows: repeat(4, 1fr);
            gap: 15px;
            max-width: 120px;
        }

        .thumbnail-item {
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .thumbnail-item:hover {
            transform: scale(1.05);
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info-panel {
            display: flex;
            flex-direction: column;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #c41e3a;
            margin-bottom: 35px;
            font-weight: 500;
        }

        .quote-form-container {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .quote-form-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .form-field {
            margin-bottom: 15px;
        }

        .form-field input,
        .form-field select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background: white;
        }

        .submit-inquiry-btn {
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
            margin-bottom: 15px;
        }

        .submit-inquiry-btn:hover {
            background: #a01828;
        }

        .submit-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 14px;
            color: #000000;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .certification-badges {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cert-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .cert-text {
            font-weight: 600;
            color: #1a1a1a;
        }

        .cert-number {
            font-size: 13px;
            color: #000000;
        }

        .cert-statement {
            flex: 1;
            text-align: right;
            color: #000000;
            font-size: 14px;
        }

        .tab-navigation {
            display: flex;
            gap: 0;
            border-bottom: 2px solid #e0e0e0;
            margin: 50px 0 40px;
            background: #d2cadc;
        }

        .tab-button {
            padding: 15px 30px;
            background: transparent;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }

        .tab-button.active-tab {
            color: #c41e3a;
        }

        .tab-button.active-tab::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #c41e3a;
        }

        .description-section {
            display: flex;
            /*grid-template-columns: 1fr 1fr;*/
            gap: 30px;
            margin-bottom: 60px;
        }

        .description-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .description-text {
            color: #000000;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }

        .feature-details h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .feature-details p {
            font-size: 14px;
            color: #000000;
            line-height: 1.6;
        }

        .applications-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

        .applications-image img {
            width: 100%;
            /*height: 100%;*/
            object-fit: cover;
        }

        .applications-list-section {
            background: #2c3e50;
            color: white;
            padding: 20px;
            border-radius: 8px;
        }

        .applications-list-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .apps-list {
            list-style: none;
        }

        .apps-list li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .apps-list li::before {
            content: '•';
            color: #c41e3a;
            font-size: 20px;
        }

        .industry-applications {
            margin-top: 50px;
        }

        .industry-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .industry-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .industry-category {
            margin-bottom: 30px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .category-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .category-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .category-description {
            color: #000000;
            font-size: 16px;
            line-height: 1.6;
        }

        .category-description ul {
            list-style: none;
            margin-top: 10px;
        }

        .cta-inquiry-btn {
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 20px;
        }

        .cta-inquiry-btn:hover {
            background: #a01828;
        }

        .cta-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .contact-phone {
            margin-left: 15px;
            color: #000000;
            font-size: 14px;
        }

        .download-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23555" width="100" height="100"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 60px 40px;
            border-radius: 8px;
            text-align: center;
            color: white;
            margin-top: 60px;
        }

        .download-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .download-btn {
            background: #c41e3a;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .download-btn:hover {
            background: #a01828;
        }

        .download-btn::after {
            content: ' ›';
            margin-left: 8px;
        }
        .num {
                text-decoration: auto;
                color: #000;
                font-size: 18px;
                font-weight: 500;
        }
        
/*==========About us css ===================*/
        
        /* About Page Styles */
        .page-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .breadcrumb-custom {
            margin-top: 15px;
        }
        
        .breadcrumb-custom a {
            color: #ff6b6b;
            text-decoration: none;
        }
        
        /* Who We Are Section */
        .who-we-are {
            padding: 80px 0;
            background: #EDEAF4;
        }
        
        .who-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-height:450px;
            max-width:450px;
        }
        
        .who-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .who-image:hover img {
            transform: scale(1.02);
        }
        
        .who-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
        }
        
        .who-content h2 span {
            color: #d32f2f;
        }
        
        .who-content p {
            color: #000000;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .who-features {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }
        
        .who-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .who-features li i {
            color: #d32f2f;
            font-size: 18px;
            width: 25px;
        }
        
        /* Mission Vision Section */
        .mission-vision {
            padding: 60px 0;
            background: #EDEAF4;
        }
        
        .mv-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(211,47,47,0.1);
        }
        
        .mv-icon {
            width: 80px;
            height: 80px;
            background: #d32f2f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .mv-icon i {
            font-size: 38px;
            color: white;
        }
        
        .mv-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        
        .mv-card p {
            color: #000000;
            line-height: 1.7;
        }
        
        /* Industries Section - Exactly as Image */
        .industries-section-about {
            padding: 80px 0;
            background: #EDEAF4;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-subtitle {
            text-align: center;
            color: #000000;
            margin-bottom: 50px;
            font-size: 18px;
        }
        
        .industry-card-about {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
        }
        
        .industry-card-about:hover {
            background: #d32f2f;
            transform: translateY(-5px);
        }
        
        .industry-card-about:hover i,
        .industry-card-about:hover h4,
        .industry-card-about:hover p {
            color: white;
        }
        
        .industry-card-about i {
            font-size: 45px;
            color: #d32f2f;
            margin-bottom: 15px;
            display: block;
        }
        
        .industry-card-about h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .industry-card-about p {
            font-size: 14px;
            color: #000000;
            margin-bottom: 0;
        }
        
        /* Standards Section - Exactly as Image */
        .standards-section-about {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .standard-card-about {
            background: white;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-bottom: 3px solid transparent;
        }
        
        .standard-card-about:hover {
            transform: translateY(-5px);
            border-bottom-color: #d32f2f;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .standard-icon {
            width: 70px;
            height: 70px;
            background: #d32f2f10;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .standard-icon i {
            font-size: 32px;
            color: #d32f2f;
        }
        
        .standard-card-about h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .standard-card-about p {
            font-size: 13px;
            color: #000000;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .page-header h1 { font-size: 32px; }
            .who-content h2 { font-size: 28px; }
            .section-title { font-size: 28px; }
            .who-we-are { padding: 50px 0; }
            .who-image { margin-bottom: 30px; }
        }


/*==============OEM Manufacturing================*/



.oem-banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.oem-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.oem-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.oem-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color:#b71c1c;
}

.oem-banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.oem-banner-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.oem-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    color: #eee;
}

.oem-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-oem-primary {
    background: #d32f2f;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-oem-primary:hover {
    background: #b71c1c;
    color: white;
}

.btn-oem-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-oem-secondary:hover {
    background: white;
    color: #d32f2f;
}

@media (max-width: 768px) {
    .oem-banner-section {
        min-height: 500px;
    }
    .oem-banner-content h1 {
        font-size: 32px;
    }
    .oem-banner-content h3 {
        font-size: 18px;
    }
    .oem-banner-content p {
        max-width: 100%;
        font-size: 14px;
    }
    .btn-oem-primary, .btn-oem-secondary {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/*-----------*/

/* About OEM Section */
.about-oem-section {
    background: #ffffff;
    padding: 60px 0 20px;
}

.about-oem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-oem-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-oem-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.about-oem-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.3;
}

.about-oem-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}

/* 4 Logos - 1 Row with Separator */
.oem-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
    align-items: center;
}

.oem-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 130px;
}

.oem-feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.oem-feature-item span {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    max-width: 100px;
}

.oem-separator {
    width: 1px;
    height: 85px;
    background: #ccc;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .oem-features-row {
        gap: 15px;
    }
    .oem-feature-item span {
        font-size: 11px;
        max-width: 85px;
    }
}

@media (max-width: 768px) {
    .about-oem-section {
        padding: 50px 0;
    }
    .about-oem-title {
        font-size: 24px;
    }
    .about-oem-text {
        font-size: 14px;
    }
    .oem-features-row {
        gap: 10px;
        justify-content: center;
    }
    .oem-separator {
        display: none;
    }
    .oem-feature-item span {
        font-size: 10px;
        max-width: 75px;
    }
    .oem-feature-icon {
        width: 30px;
        height: 30px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .oem-features-row {
        gap: 15px;
    }
    .oem-feature-item span {
        font-size: 11px;
        max-width: 85px;
    }
}

@media (max-width: 768px) {
    .about-oem-section {
        padding: 50px 0;
    }
    .about-oem-title {
        font-size: 24px;
    }
    .about-oem-text {
        font-size: 14px;
    }
    .oem-features-row {
        gap: 10px;
        justify-content: center;
    }
    .oem-separator {
        display: none;
    }
    .oem-feature-item span {
        font-size: 10px;
        max-width: 75px;
    }
    .oem-feature-icon {
        width: 30px;
        height: 30px;
    }
}

/*---------------------------*/


/* OEM Manufacturing Process Section */
.oem-process-section {
    background: #ffffff;
    padding: 30px 0 0px;
}

.process-heading {
    text-align: center;
    margin-bottom: 30px;
}

.process-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0px;
}

.heading-underline {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Process Cards Wrapper */
.process-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

/* Process Card */
.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 13px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 175px;
    margin: 15px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.process-card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Card Number - Center on Border */
.card-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card Icon */
.card-icon {
    margin: 25px 0 15px;
}

.card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Card Title */
.process-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

/* Card Description */
.process-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0;
    font-weight: 400
}

/* Arrow between cards */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: #d32f2f;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .process-cards-wrapper {
        gap: 20px;
    }
    .card-arrow {
        display: none;
    }
    .process-card {
        min-width: calc(33.33% - 20px);
        margin: 10px;
    }
}

@media (max-width: 992px) {
    .process-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .oem-process-section {
        padding: 50px 0;
    }
    .process-heading h2 {
        font-size: 24px;
    }
    .process-card {
        min-width: 100%;
        margin: 15px 0;
    }
    .card-arrow {
        display: none;
    }
}

/*-----------------------*/

/*----------------------*/
/* Fabrics & Industries Section */
.fabrics-industries-section {
    background: #ffffff;
    padding: 60px 0;
}

.section-heading {
    margin-bottom: 8;
}

.section-heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0px !important;
    white-space: nowrap;
}

.heading-underline {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Col-A - Row align stretch */
.row.align-items-stretch {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.row.align-items-stretch > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Left Column - Fabrics List with disc */
.fabrics-list {
    flex: 1;
}

.fabrics-list ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.fabrics-list ul li {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    padding: 6px 0;
    margin: 0;
}

/* Right side - Image Full Cover */
.fabrics-image {
    height: 100%;
    display: flex;
}

.fabrics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Col-B - 4 Cards Grid */
.industries-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.industry-card-4 {
    text-align: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-card-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.industry-card-4 img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

.industry-card-4 span {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a2e;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .fabrics-industries-section {
        padding: 40px 0;
    }
    .section-heading h2 {
        font-size: 20px;
        white-space: normal;
    }
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fabrics-col .row.align-items-stretch {
        flex-direction: column;
    }
    .fabrics-image {
        margin-top: 15px;
        min-height: 180px;
    }
    .industry-card-4 img {
        width: 35px;
        height: 35px;
    }
    .industry-card-4 span {
        font-size: 10px;
    }
    .fabrics-list ul li {
        font-size: 14px;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/*--------------------------------------------------*/

/* Why Sentineltex Section */
.why-sentineltex-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.why-heading {
    text-align: center;
    margin-bottom: 40px;
}

.why-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.heading-underline-center {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Why Card - Icon Left */
.why-card { 
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    padding: 30px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon - Left Side */
.why-icon {
    flex-shrink: 0;
    width: 55px;
    height: 65px;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content - Right Side */
.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-sentineltex-section {
        padding: 50px 0;
    }
    .why-heading h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .why-sentineltex-section {
        padding: 40px 0;
    }
    .why-heading h2 {
        font-size: 22px;
    }
    .why-heading {
        margin-bottom: 30px;
    }
    .why-card {
        padding: 15px;
        gap: 12px;
    }
    .why-icon {
        width: 45px;
        height: 45px;
    }
    .why-content h3 {
        font-size: 14px;
    }
    .why-content p {
        font-size: 11px;
    }
}

/*-----------------------------------*/

/* CTA Section */
.oem-cta-section {
    background: #EEEBF2;
    padding: 40px 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cta-content {
    padding-left: 30px;
}

.cta-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}



.cta-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #d32f2f;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.cta-btn-secondary:hover {
    background: #d32f2f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .oem-cta-section {
        padding: 60px 0;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-content h3 {
        font-size: 18px;
    }
    .cta-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .oem-cta-section {
        padding: 50px 20px;
    }
    .cta-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 26px;
    }
    .cta-content h3 {
        font-size: 18px;
    }
    .cta-content p {
        font-size: 14px;
        max-width: 100%;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-image {
        justify-content: center;
    }
    .cta-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 10px 20px;
    }
    .cta-image img {
        max-width: 100%;
    }
}


/*====================Certification page css start here===============================*/

/* Certifications Banner Section */
.cert-banner-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.cert-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.cert-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width:650px !important;
}

.cert-banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 2px;
}

.cert-banner-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.cert-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    color: #eee;
}

.cert-breadcrumb {
    font-size: 14px;
    color: #ccc;
}

.cert-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.cert-breadcrumb a:hover {
    text-decoration: underline;
    color:var(--primary-red);
}

.cert-breadcrumb span {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .cert-banner-section {
        min-height: 450px;
    }
    .cert-banner-content h1 {
        font-size: 32px;
    }
    .cert-banner-content h3 {
        font-size: 18px;
    }
    .cert-banner-content p {
        font-size: 14px;
        max-width: 100%;
    }
}

/*----------------------------------------------------*/


/* Our Commitment to Quality Section */
.commitment-quality-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.commitment-image {
    width: 100%;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.commitment-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.commitment-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.commitment-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 12px;
}

.commitment-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .commitment-quality-section {
        padding: 50px 20px;
    }
    .commitment-content h2 {
        font-size: 26px;
        margin-top: 25px;
    }
    .commitment-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .commitment-content {
        text-align: center;
    }
    .commitment-content p {
        font-size: 14px;
        text-align: left;
    }
}

/*---------------------------------------------------*/

/* Certifications Section */
.certifications-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.certifications-heading {
    text-align: center;
    margin-bottom: 20px;
}

.certifications-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.certifications-heading h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.certifications-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 10px auto 0;
}

/* Cert Card */
.cert-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Card Image */
.cert-card-img {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.cert-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-card-img img {
    transform: scale(1.05);
}

.cert-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.cert-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 12px;
    flex: 1;
}

.cert-view-btn {
    display: inline-block;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.cert-view-btn:hover {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .certifications-section {
        padding: 50px 20px;
    }
    .certifications-heading h2 {
        font-size: 26px;
    }
    .certifications-heading p {
        font-size: 14px;
    }
    .cert-card-img {
        height: 140px;
    }
    .cert-card h3 {
        font-size: 16px;
    }
    .cert-card h4 {
        font-size: 13px;
    }
}

/*--------------------------------------------*/

/* Quality Assurance Process Section */
.quality-process-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.quality-process-heading {
    text-align: center;
    margin-bottom: 10px;
}

.quality-process-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin:0;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Process Cards Wrapper */
.process-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

/* Process Card - Fixed Height */
.process-card {
    border-radius: 12px;
    height: auto;
    padding: 10px 10px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
}
 
/* Arrow between cards */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    color: #d32f2f;
    font-size: 16px;
    font-weight:700;
}

/* Icon Image - No Background */
.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    flex-shrink: 0;
}

.process-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .card-arrow {
        display: none;
    }
    .process-cards-wrapper {
        gap: 20px;
    }
    .process-card {
        min-width: calc(50% - 20px);
        height: 280px;
    }
}

@media (max-width: 768px) {
    .quality-process-section {
        padding: 50px 20px;
    }
    .quality-process-heading h2 {
        font-size: 26px;
    }
    .process-card {
        min-width: 100%;
        height: 280px;
    }
    .process-icon {
        width: 55px;
        height: 55px;
    }
    .process-icon img {
        width: 40px;
        height: 40px;
    }
    .process-card h3 {
        font-size: 16px;
    }
    .process-card p {
        font-size: 12px;
    }
}

/*-----------------------------------------*/

/* Why Buyers Trust Sentineltex Section */
.buyers-trust-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.buyers-trust-heading {
    text-align: center;
    margin-bottom: 20px;
}

.buyers-trust-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px !important;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Trust Card */
.trust-card {
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
}

/* Icon Image - Fixed Height */
.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    flex-shrink: 0;
}

.trust-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Heading - Fixed Min Height */
.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description - Will push to bottom if needed, but align consistently */
.trust-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .buyers-trust-section {
        padding: 40px 20px;
    }
    .buyers-trust-heading {
        margin-bottom: 35px;
    }
    .buyers-trust-heading h2 {
        font-size: 26px;
    }
    .trust-card {
        padding: 20px 15px;
    }
    .trust-icon {
        width: 55px;
        height: 55px;
    }
    .trust-icon img {
        width: 40px;
        height: 40px;
    }
    .trust-card h3 {
        font-size: 16px;
        min-height: 44px;
        margin-bottom: 10px;
    }
    .trust-card p {
        font-size: 14px;
    }
}

/*----------------------------------------------*/

/* Our Quality Promise Section */
.quality-promise-section {
    background: #ffffff;
    padding: 40px 0;
}

.promise-image {
    width: 100%;
}

.promise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.promise-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    margin:12px 0;
} 
.promise-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.promise-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 10px;
}

.promise-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .quality-promise-section {
        padding: 50px 20px;
    }
    .promise-content h2 {
        font-size: 26px;
        margin-top: 25px;
    }
    .promise-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .promise-content {
        text-align: center;
    }
    .promise-content h4 {
        font-size: 15px;
    }
    .promise-content p {
        font-size: 14px;
        text-align: left;
    }
}
/*----------------------------------------*/

/* Certification CTA Section */
.cert-cta-section {
    background: #d32f2f; /* Light Red Background */
    padding: 50px 0;
}

.cert-cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cert-cta-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 90%;
}

.cert-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Primary Button */
.cert-cta-btn-primary {
    background: #ffffff;
    color: #d32f2f;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cert-cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Secondary Button */
.cert-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cert-cta-btn-secondary:hover {
    background: #ffffff;
    color: #d32f2f;
    transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 992px) {
    .cert-cta-section {
        padding: 40px 0;
    }

    .cert-cta-text h3 {
        font-size: 26px;
    }

    .cert-cta-buttons {
        justify-content: flex-start;
        margin-top: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cert-cta-section {
        padding: 40px 20px;
        text-align: center;
    }

    .cert-cta-text h3 {
        font-size: 22px;
    } 

    .cert-cta-text p {
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cert-cta-buttons {
        justify-content: center;
    }

    .cert-cta-btn-primary,
    .cert-cta-btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/*==========================================================*/


/* Industries Banner Section */
.industries-banner-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Overlay - Kam opacity */
.industries-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(0, 0, 0, 5) 0%,rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 5) 100%);
}

.industries-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.industries-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.industries-banner-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.industries-banner-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
    max-width: 100%;
}

.industries-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.industries-btn i {
    margin-left: 8px;
}

.industries-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

/* Right Side - Wrapper for right corner alignment */
.industries-vertical-wrapper {
    display: flex;
    justify-content: flex-end;
}

/* Right Side - Vertical Box (Width 230px) */
.industries-vertical-box {
    position: relative;
    z-index: 2;
    background: #29323F;
    border-radius: 16px;
    padding: 25px 20px;
    width: 250px;
}

.industries-vertical-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.industries-vertical-item:last-child {
    border-bottom: none;
}

/* Image - Fixed width, bigger */
.industries-vertical-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.industries-vertical-item span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-banner-section {
        min-height: auto;
        padding: 60px 0;
    }
    .industries-banner-content h1 {
        font-size: 32px;
    }
    .industries-vertical-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
    .industries-vertical-box {
        width: 100%;
        max-width: 230px;
    }
}

@media (max-width: 768px) {
    .industries-banner-section {
        padding: 50px 20px;
    }
    .industries-banner-content h1 {
        font-size: 28px;
    }
    .industries-banner-content p {
        font-size: 14px;
    }
    .industries-vertical-box {
        padding: 20px;
    }
    .industries-vertical-item img {
        width: 35px;
        height: 35px;
    }
    .industries-vertical-item span {
        font-size: 11px;
    }
}


/*------------------------------------------*/

/* Industries We Serve Section */
.industries-serve-section {
    background: #ffffff;
    padding: 70px 0;
}

.industries-serve-heading {
    text-align: center;
    margin-bottom: 50px;
}

.industries-serve-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.industries-serve-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-top: 20px;
}

/* Industry Card */
.industry-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Card Image - Top Half */
.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .card-image img {
    transform: scale(1.05);
}

/* Circle Icon - Half on image, half on content, left aligned */
.card-icon-circle {
    position: absolute;
    top: 155px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    border: 3px solid #fff;
}

.card-icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Card Content - Bottom Half */
.card-content {
    padding: 20px 15px 20px 20px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    margin-top: 5px;
    text-align: center;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 15px;
    flex: 1;
}

/* Button - Fixed at bottom */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #b71c1c;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .industries-serve-section {
        padding: 50px 0;
    }
    .industries-serve-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .industries-serve-section {
        padding: 40px 20px;
    }
    .industries-serve-heading h2 {
        font-size: 24px;
    }
    .card-image {
        height: 160px;
    }
    .card-icon-circle {
        top: 140px;
        width: 45px;
        height: 45px;
    }
    .card-icon-circle img {
        width: 40px;
        height: 40px;
    }
    .card-content p {
        font-size: 14px;
    }
    .card-link {
        font-size: 13px;
    }
}
/*-----------------------------*/

/* Why Partner with Sentineltex Section */
.partner-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.partner-heading {
    text-align: center;
    margin-bottom: 50px;
}

.partner-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* 6 Cards - 1 Row Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Partner Card */
.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon */
.partner-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Title */
.partner-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Description */
.partner-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0;
    flex: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 50px 20px;
    }
    .partner-heading h2 {
        font-size: 26px;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .partner-card {
        padding: 20px 12px;
    }
    .partner-icon {
        width: 50px;
        height: 50px;
    }
    .partner-icon img {
        width: 38px;
        height: 38px;
    }
    .partner-card h3 {
        font-size: 14px;
    }
    .partner-card p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------*/

/* Built for Performance Simple Section */
.performance-simple-section {
    background: #ffffff;
    padding: 40px 0;
}

.performance-simple-heading {
    text-align: center;
    margin-bottom: 50px;
}

.performance-simple-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.performance-simple-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

/* Row - Flex */
.performance-simple-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Column */
.performance-simple-col {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

/* Icon Circle */
.performance-simple-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.performance-simple-icon img {
    height: 70px;
    object-fit: contain;
}

/* Heading */
.performance-simple-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

/* Divider */
.performance-divider {
    width: 1px;
    height: 100px;
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .performance-divider {
        display: none;
    }
    .performance-simple-row {
        gap: 25px;
    }
    .performance-simple-col {
        min-width: calc(33.33% - 25px);
        flex: unset;
    }
}

@media (max-width: 768px) {
    .performance-simple-section {
        padding: 50px 20px;
    }
    .performance-simple-heading h2 {
        font-size: 28px;
    }
    .performance-simple-heading p {
        font-size: 14px;
    }
    .performance-simple-col {
        min-width: calc(50% - 25px);
    }
}

@media (max-width: 480px) {
    .performance-simple-col {
        min-width: 100%;
    }
    .performance-simple-icon {
        width: 55px;
        height: 55px;
    }
    .performance-simple-icon img {
        width: 28px;
        height: 28px;
    }
}

/*-------------------------------------------*/
/* Industries CTA Section */

.industries-cta-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

.industries-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);*/
}

.industries-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 320px;
    padding: 50px 40px;
}

.industries-cta-content {
    text-align: right;
    color: #fff;
    max-width: 70%;
}

.industries-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
}

.industries-cta-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
}

.industries-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.industries-cta-btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industries-cta-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.industries-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industries-cta-btn-secondary:hover {
    background: #fff;
    color: #d32f2f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .industries-cta-content {
        max-width: 80%;
    }
    .industries-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .industries-cta-wrapper {
        min-height: auto;
    }
    .industries-cta-inner {
        justify-content: center;
        padding: 40px 25px;
        min-height: auto;
    }
    .industries-cta-content {
        text-align: center;
        max-width: 100%;
    }
    .industries-cta-content h2 {
        font-size: 24px;
    }
    .industries-cta-content p {
        font-size: 18px;
    }
    .industries-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .industries-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .industries-cta-btn-primary,
    .industries-cta-btn-secondary {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

/*=============================================================*/


/* Catalogue Banner Section */
.catalogue-banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.catalogue-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.catalogue-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.catalogue-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.catalogue-banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.catalogue-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
}

.catalogue-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.catalogue-btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalogue-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

.catalogue-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalogue-btn-secondary:hover {
    background: #fff;
    color: #d32f2f;
    transform: translateY(-2px);
}

/* Stats with Icons - Left Align */
.catalogue-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.catalogue-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalogue-stat-item img {
    height: 50px;
    object-fit: contain;
}

.catalogue-stat-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.catalogue-stat-item p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .catalogue-banner-section {
        min-height: auto;
        padding: 60px 20px;
    }
    .catalogue-banner-content h1 {
        font-size: 28px;
    }
    .catalogue-banner-content p {
        font-size: 14px;
    }
    .catalogue-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .catalogue-stats {
        gap: 20px;
    }
    .catalogue-stat-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .catalogue-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/*---------------------------------------------------*/

/* Catalogue Products Section */
.catalogue-products-section {
    background: #ffffff;
    padding: 40px 0;
}

.catalogue-products-heading {
    text-align: center;
    margin-bottom: 30px;
}

.catalogue-products-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* 6 Cards - 1 Row Grid */
.catalogue-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Product Card */
.catalogue-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalogue-product-card:hover {
    transform: translateY(-5px);
}

/* Card Image - Top */
.catalogue-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.catalogue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalogue-product-card:hover .catalogue-card-image img {
    transform: scale(1.05);
}

/* Circle Icon - Half on image, half on content */
.catalogue-card-icon {
    position: absolute;
    top: 195px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 2;
    border: 2px solid #fff;
}

.catalogue-card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Card Content */
.catalogue-card-content {
    padding: 20px 15px 20px 20px;
    background: #fff;
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.catalogue-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 10px;
}

/* Button - Bottom Aligned */
.catalogue-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.catalogue-card-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.catalogue-card-link:hover {
    color: #b71c1c;
}

.catalogue-card-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .catalogue-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogue-products-section {
        padding: 50px 20px;
    }
    .catalogue-products-heading h2 {
        font-size: 26px;
    }
    .catalogue-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .catalogue-card-image {
        height: 200px;
    }
    .catalogue-card-icon {
        top: 175px;
        width: 45px;
        height: 45px;
    }
    .catalogue-card-icon img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .catalogue-products-grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------*/


/* Why Choose Sentineltex Section */
.why-choose-section {
    background: #F7F6FC;
    padding: 40px 0;
}

.why-choose-heading {
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    /*margin-bottom: 12px;*/
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Card */
.why-choose-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

/* Icon */
.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon img {
    height: 80px;
    object-fit: contain;
}

/* Title */
.why-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

/* Description */
.why-choose-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }
    .why-choose-heading h2 {
        font-size: 26px;
    }
    .why-choose-card {
        padding: 25px 15px;
    }
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    .why-choose-icon img {
        width: 42px;
        height: 42px;
    }
    .why-choose-card h3 {
        font-size: 16px;
    }
    .why-choose-card p {
        font-size: 13px;
    }
}

/*------------------------------------------*/

/* Catalogue Bottom CTA Section */
.catalogue-bottom-cta {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.catalogue-bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.catalogue-bottom-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.catalogue-bottom-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.catalogue-bottom-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #eee;
}

/* Grid - 6 items in 1 row */
.catalogue-bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.catalogue-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.catalogue-bottom-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.catalogue-bottom-item span {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

/* Button */
.catalogue-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.catalogue-bottom-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogue-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogue-bottom-cta {
        min-height: auto;
        padding: 60px 20px;
    }
    .catalogue-bottom-content h2 {
        font-size: 28px;
    }
    .catalogue-bottom-content p {
        font-size: 14px;
    }
    .catalogue-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .catalogue-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*----------------------------------------------------*/

  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #d32f2f;
            --primary-red-1: #c0392b;
            --accent-orange: #e67e22;
            --dark-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #ccc;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ====== HEADER ====== */
        header {
            background: #edeaf4;
            border-bottom: 2px solid #e0e0e0;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar {
            padding: 0 40px;
        }

        .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .logo-text {
            color: #000;
        }

        .logo-text .main {
            display: block;
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text .sub {
            color: var(--primary-red);
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .navbar-nav .nav-link {
            color: #000 !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: var(--transition);
            font-size: 14px;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: relative;
            bottom: 0px;
            left: 0;
            width: 0;
            height: 3px;
            background: transparent;
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .navbar-nav .nav-link:hover::after {
            width: 0px;
        }

        /* ====== HERO SECTION WITH SLIDER ====== */
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(52 29 29 / 50%), rgb(83 68 68 / 20%));
            z-index: 1;
        }

        .hero-slide img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 600px;
            padding: 45px;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary-red {
            background: var(--primary-red);
            color: #fff;
            padding: 14px 35px;
            border: 2px solid var(--primary-red);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-primary-red::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary-red:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary-red:hover {
            background: #b71c1c;
            border-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
        }

        .btn-secondary-white {
            background: transparent;
            color: #fff;
            padding: 14px 35px;
            border: 2px solid #fff;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-secondary-white::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fff;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-secondary-white:hover::before {
            left: 0;
        }

        .btn-secondary-white:hover {
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 60px;
            display: flex;
            gap: 10px;
            z-index: 2;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .dot.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
            border-color: var(--primary-red);
            box-shadow: 0 0 15px rgba(211, 47, 47, 0.6);
        }

        /* ====== FEATURES SECTION ====== */
        .features-section {
            background: #e1dce6;
            padding: 50px 0;
        }
 
        .feature-box {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: center;
            padding:20px 6px 15px 6px;;
            border-radius: 8px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            height: 120px;

        }
        .feature-icon-custom h5{
            font-size:18px !important;
        }
        .feature-icon-custom{
            text-align:left;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 30px;
            color: var(--primary-red);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .feature-box:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            animation: none;
        }

        .feature-box h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .feature-box p {
            font-size: 14px;
            color: #000000;
        }

        /* ====== PRODUCTS SECTION ====== */
        .products-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--text-dark);
            position: relative;
            animation: fadeInDown 0.8s ease-out;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            border-radius: 2px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .products-slider {
            position: relative;
            margin-bottom: 50px;
            overflow: hidden;
        }

        .products-container {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 10px;
        }

        .product-card {
            flex: 0 0 calc(25% - 15px);
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            animation: scaleIn 0.6s ease-out;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(211, 47, 47, 0.3));
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card:hover img {
            transform: scale(1.1) rotate(2deg);
        }

        .product-info {
            /*position: absolute;*/
            bottom: 0;
            left: 0;
            right: 0;
            /*background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 60%);*/
            color: #fff;
            padding: 30px 20px;
            padding-top: 60px;
            transition: var(--transition);
            z-index: 3;
        }

        .product-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .product-info ul {
            list-style: none;
            font-size: 13px;
        }

        .product-info li {
            margin: 6px 0;
            padding-left: 15px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .product-info li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        .product-card:hover .product-info li {
            transform: translateX(5px);
        }

        .view-all-btn {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-btn a {
            background: linear-gradient(135deg, var(--primary-red), #b71c1c);
            color: #fff;
            padding: 14px 45px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            font-size: 15px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .view-all-btn a::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .view-all-btn a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }

        .view-all-btn a:hover::after {
            transform: translateX(5px);
        }

        /* ====== INDUSTRIES SECTION ====== */
        .industries-section {
            padding: 80px 0;
            background: #E1DCE6;
            position: relative;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .industry-card {
            position: relative;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: slideInUp 0.6s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .industry-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3);
        }

        .industry-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .industry-card:hover img {
            transform: scale(1.15) rotate(-2deg);
        }

        .industry-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(211, 47, 47, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            text-align: center;
            transition: var(--transition);
        }

        .industry-card:hover .industry-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(211, 47, 47, 0.6));
        }

        /* ====== OEM SECTION ====== */
        .oem-section {
            padding: 80px 0;
            background: #fff;
        }

        .oem-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .oem-image {
            animation: slideInLeft 0.8s ease-out;
        }

        .oem-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .oem-image:hover img {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 20px 50px rgba(211, 47, 47, 0.25);
        }

        .oem-text {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .oem-text h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
            letter-spacing: 0.5px;
        }

        .oem-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .oem-features li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 16px;
            color: #000000;
            transition: var(--transition);
            border-left: 3px solid transparent;
            padding-left: 25px;
        }

        .oem-features li:before {
            content: '●';
            position: absolute;
            left: 0;
            color: #000000;
            font-weight: 700;
            font-size: 20px;
            animation: checkMark 0.6s ease-out backwards;
            list-style-type: disc;
            top:11px;
        }

        @keyframes checkMark {
            0% {
                transform: scale(0) rotate(-45deg);
                opacity: 0;
            }
            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        .oem-features li:hover {
            transform: translateX(2px);
            /*border-left-color: var(--primary-red);*/
            background: rgba(211, 47, 47, 0.05);
            padding-left: 30px;
        }

        .btn-oem {
            background: linear-gradient(135deg, var(--primary-red), #b71c1c);
            color: #fff;
            padding: 14px 35px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .btn-oem::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .btn-oem:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }

        .btn-oem:hover::after {
            transform: translateX(5px);
        }

        /* ====== FOOTER ====== */
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary-red);
        }

        .footer-wrapper {
            display: grid;
            grid-template-columns: 1fr 4fr;
            gap: 60px;
            align-items: flex-start;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
        }

        .logo-text-footer {
            color: #fff;
        }

        .logo-text-footer .main {
            display: block;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1px;
        }

        .logo-text-footer .sub {
            color: var(--primary-red);
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer-col ul {
            list-style: none;
            padding:0px;
        }

        .footer-col ul li {
            margin: 12px 0;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            transition: var(--transition);
            padding-left: 0;
        }

        .footer-col ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .footer-col ul li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .footer-col ul li a:hover::before {
            width: 100%;
        }

        .footer-col ul li a:hover {
            color: var(--primary-red);
        }

        .footer-col ul li:hover {
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: var(--text-light);
        }

        .footer-left {
            animation: fadeInLeft 0.8s ease-out;
        }

        .footer-right {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
            animation: fadeInRight 0.8s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .footer-contact:hover {
            color: var(--primary-red);
            transform: translateX(3px);
        }

        .footer-contact i {
            /*color: var(--primary-red);*/
            font-size: 16px;
        }

        .footer-contact a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary-red);
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 1200px) {
            .product-card {
                flex: 0 0 calc(33.333% - 15px);
            }

            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-wrapper {
                grid-template-columns: 1fr 3fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: repeat(5, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .hero-content {
                padding: 40px 30px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .product-card {
                flex: 0 0 calc(50% - 15px);
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .oem-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .footer-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-right {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 30px 20px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .hero-buttons {
                gap: 10px;
            }

            .btn-primary-red, .btn-secondary-white {
                padding: 12px 25px;
                font-size: 14px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 40px;
            }

            .product-card {
                flex: 0 0 100%;
            }

            .industries-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .industry-card {
                height: 150px;
            }

            .oem-text h2 {
                font-size: 28px;
            }

            .features-section {
                padding: 30px 0;
            }

            .feature-box {
                flex-direction: column;
                text-align: center;
            }

            .hero-dots {
                bottom: 20px;
                left: 20px;
            }

            .footer-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 25px;
                padding-bottom: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-col h5 {
                font-size: 14px;
            }

            .footer-col ul li {
                font-size: 13px;
            }
        } 
        
.logo-text-footer img{       
    width: 250px;
    top: -15px;
    position: relative;
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a2e;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
}

/* Grid Layout - 4 cards in a row */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card - Fixed Height */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.product-info {
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
    border-left: 3px solid #e67e22;
    padding-left: 12px;
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.product-info ul li {
    padding: 2px 0;
    color: #000000;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.product-info ul li:before {
    content: "•";
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 10px;
    top: -3px;
}

/* View All Button */
.view-all-btn {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn a {
    display: inline-block;
    padding: 12px 35px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e67e22;
}

.view-all-btn a:hover {
    background: transparent;
    color: #e67e22;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        height: auto;
        min-height: 360px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .product-info ul li {
        font-size: 0.85rem;
        padding: 5px 0 5px 20px;
    }
}

    /* Products Section */
    .products-section {
        padding: 80px 20px;
        background: #EDEAF4;
    }

    .container-fluid {
        width: 100%;
        max-width: 1800px;
        margin: 0 auto;
    }
    @media (max-width: 1400px) {
    .container-fluid {
        max-width: 1200px;
    }
}
    

    .section-title {
        text-align: left;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #1a1a2e;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #e67e22;
    }

    /* Swiper Container */
    .swiper-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        width: auto;
        flex-shrink: 0;
    }

    /* Product Card */
    .product-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        min-height: 420px;
        width: 280px;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    /* Product Image */
    .product-image-wrapper {
        /*height: 220px;*/
        background: #d3d3d3;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }

    .product-card:hover .product-image {
        transform: scale(1.05);
    }

    /* Product Heading - BLACK BG, WHITE TEXT */
    .product-heading {
        background: #000;
        padding: 14px 15px;
        border-bottom: none;
        flex-shrink: 0;
        margin: 0;
    }

    .product-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.2;
    }

    /* Product List - PURPLE BG */
    .product-info {
        padding: 0;
        background: #EDEAF4;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .product-list {
        list-style: none;
        padding: 0 15px;
        margin: 0;
    }

    .product-list li {
        padding: 5px 0;
        color: #000;
        font-size: 0.93rem;
        position: relative;
        padding-left: 16px;
        font-weight: 500;
        line-height: 1.3;
    }

    .product-list li:before {
        content: "•";
        color: #000;
        font-weight: bold;
        font-size: 0.8rem;
        position: absolute;
        left: 4px;
        top: 6px;
    }

    /* Swiper Navigation Buttons */
    .swiper-button-prev,
    .swiper-button-next {
        background: #c0392b;
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        top: 44%;
        transform: translateY(-50%);
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: #a93226;
        box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
        font-weight: bold;
    }

    /* Swiper Pagination */
    .swiper-pagination {
        bottom: -50px !important;
    }

    .swiper-pagination-bullet {
        background: #c0392b;
        opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
        background: #c0392b;
        opacity: 1;
    }

    /* View All Button */
    .view-all-btn {
        text-align: center;
        margin-top: 80px;
    }

    .btn-view-all {
        display: inline-block;
        padding: 14px 40px;
        background: #c0392b;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        letter-spacing: 0.5px;
    }

    .btn-view-all:hover {
        background: #a93226;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    }

    .arrow {
        margin-left: 8px;
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .product-card {
            width: 220px;
        }

        .swiper-container {
            padding: 0 40px;
        }
    }

    @media (max-width: 768px) {
        .products-section {
            padding: 50px 20px;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .swiper-container {
            padding: 0 40px;
        }

        .product-card {
            width: 270px;
            min-height: 450px;
        }

        .product-image-wrapper {
            height: 180px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            width: 35px;
            height: 35px;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .swiper-container {
            padding: 0 30px;
        }
    }

.custom-oem-features {
    padding-left:0px;
} 


.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  display: block;
}

/* Overlay full center */
.industry-overlay {
  position: absolute;
  inset: 0; /* full cover */
  /*background: rgba(0,0,0,0.5);*/
  
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
}

/* Icon */
.industry-overlay i {
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px; /* 👈 gap between icon & text */
}

/* Text */
.industry-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.industry-card{
    height:120px;
}

/*---------responsive css start--------------*/

/* ====== ONLY ONE MEDIA QUERY - 768px ====== */
@media (max-width: 768px) {
    
    .navbar {
        padding: 0 8px;
    }
    .logo-text img{
        width:200px !important;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .hero-buttons {
        display: block;
    }
    
    .btn-primary-red,
    .btn-secondary-white {
        padding: 8px 16px;
        font-size: 12px;
        text-align: center;
    }
    
    .features-section {
        padding: 30px 0;
    }
    
    .features-section .col-md-3 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        height: 200px;
    }
    
    .feature-icon-custom {
        text-align: center;
    }
    
    .section-title {
        font-size: 22px;
        text-align: center !important;
        margin-bottom: 40px;
    }
    
    .section-title:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px;
    }
    
    .products-section {
        padding: 40px 15px;
    }
    
    .swiper-container {
        padding: 0 10px;
    }
    
    .product-card {
        width: 100%;
        min-height: 380px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .product-heading {
        padding: 10px 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-list li {
        font-size: 11px;
        padding: 3px 0 3px 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 28px;
        height: 28px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px;
    }
    
    .btn-view-all {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-card {
        height: 100px;
    }
    
    .industry-overlay i {
        font-size: 18px;
    }
    
    .industry-overlay span {
        font-size: 11px;
    }
    
    .oem-section {
        padding: 40px 15px;
    } 
    
    .oem-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .oem-text h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .oem-features li {
        font-size: 13px;
    }
    
    .btn-oem {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        /*grid-template-columns: repeat(2, 1fr);*/
        gap: 20px;
    }
    
    .logo-text-footer img {
        width: 180px;
        display: block;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    .industries-section {
        padding:40px 0;
    }
}

        /* Contact Page Additional Styles */
        .page-banner {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-top: 0;
        }

        .page-banner h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-banner p {
            font-size: 18px;
            opacity: 0.9;
        }

        .contact-section {
            padding: 80px 0;
            background: #EDEAF4;
        }

        .contact-info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: #d32f2f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon i {
            font-size: 30px;
            color: white;
        }

        .contact-info-card h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .contact-info-card p {
            color: #000000;
            margin-bottom: 5px;
        }

        .contact-info-card a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }

        .contact-form-wrapper .subtitle {
            color: #000000;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 5px;
        }

        .form-control, .form-select {
            height: 50px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            padding: 10px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: #d32f2f;
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }

        textarea.form-control {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #d32f2f;
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 150px;
            margin-right: 5px;
        }

        .submit-btn:hover {
            background: #b71c1c;
            transform: translateY(-2px);
        }

        .map-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-top: 50px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 350px;
            border: 0;
        }

        .business-hours {
            background: #fff3e0;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .business-hours i {
            color: #d32f2f;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 50px 0;
            }
            .page-banner h1 {
                font-size: 32px;
            }
            .contact-section {
                padding: 50px 0;
            }
            .contact-form-wrapper {
                padding: 25px;
                margin-top: 30px;
            }
        }

         /* Hero Section about page */
        .hero-section {
            background-image: url("../img/image.png");
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            color: #ffffff;
            padding: 60px 20px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(192, 57, 43, 0.1) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: -1px;
            text-transform: uppercase;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-description {
            font-size: 16px!important;
            max-width: 900px;
            line-height: 1.7;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        
        /* Main Content */
        .main-content {
            background: url('../img/background.png');
            padding: 60px 20px;
        }

        .section-title-about {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title-about::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-red-1);
        }

        .intro-text {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 50px;
            color: #000000;
        }
        
                /* Certification Grid */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 15px;
            /*margin-bottom: 60px;*/
        }

        .cert-card {
            background: #EDEAF3;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red-1), var(--accent-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .cert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-red-1);
        }

        .cert-card:hover::before {
            transform: scaleX(1);
        }

        .cert-icon {
            width: 60px;
            height: 60px;
            /*background: linear-gradient(135deg, var(--primary-red-1), var(--accent-orange));*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 1.5em;
            font-weight: bold;
        }

        .cert-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 15px;
        }

        .cert-description { 
            font-size: 0.95em;
            line-height: 1.7;
            color: #000;
            font-weight:400;
        }

        /* Two Column Section */
        .two-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
            align-items: start;
        }

        .feature-box-about {
            background: #EDEAF3;
            padding: 20px;
            border-radius: 2px;
            /*border-left: 5px solid var(--primary-red-1);*/
        }

        .feature-box-about h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5em;
            font-weight: 700;
            color: #1a2332;
            margin-bottom: 20px;
        }

        .feature-list {
            /*list-style: none;*/
        }

        .feature-list li {
            padding: 0px 0 4px 5px;
            position: relative;
            font-size: 0.95em;
            color: #000000;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            color: var(--primary-red-1);
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Request Form Section */
        .request-section {
            background: transparent;
            /*color: #ffffff;*/
            padding: 15px 35px;
            border-radius: 2px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

        .request-section::before {
            /*content: '';*/
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(192, 57, 43, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .request-content {
            position: relative;
            z-index: 2;
        }

        .request-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 5px;
            margin-top: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        .form-group input,
        .form-group textarea {
            padding: 6px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            /*background: rgba(255, 255, 255, 0.1);*/
            color: #000;
            font-size: 0.95em;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red-1);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: var(--primary-red-1);
            color: #ffffff;
            padding: 10px 10px;
            border: none;
            border-radius: 1px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #a52a1f;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
        }

        .contact-info-about {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
        }

        /* Commitment Section */
        .commitment-section {
            background: var(--bg-light);
            /*padding: 50px;*/
            border-radius: 12px;
            margin: 40px 0;
        }

        .commitment-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2em;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .commitment-section p {
            font-size: 1.05em;
            line-height: 1.8;
            color: #000000;
        }

        /* Three Column Grid */
        .three-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .service-card {
            background: #ffffff;
            padding: 35px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--primary-red-1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3em;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #000000;
            line-height: 1.6;
        }
        
                /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2em;
            }

            .two-column,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .cert-grid {
                grid-template-columns: 1fr;
            }

            .request-section,
            .commitment-section {
                padding: 30px 20px;
            }
        }
        
        .features-strip {
            background: #2a2a2a;
            padding: 30px 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: white;
            max-width: 360px;
        }

        .icon-wrapper {
            flex-shrink: 0;
        }

        .icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .feature-content p {
            font-size: 13px;
            font-weight: 400;
            color: #d0d0d0;
            line-height: 1.4;
        }

        @media (max-width: 1200px) {
            .features-strip {
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .features-strip {
                flex-direction: column;
                gap: 40px;
                padding: 40px 20px;
            }

            .feature-item {
                max-width: 100%;
            }
            .mob {
                flex-direction: column;
            }
            .contact-item {
                margin-top:10px;
            }
        }

.icon-img img{
    height: 60px;
    width: 100%;
    object-fit: cover;
}

.contact-item a{
    color:#000000;
    text-decoration:none;
}
   
  .section-subtitle{
      padding-top:20px;
  }
  
  
  
  /*================Product page css start========================*/
  
  
        .breadcrumb-nav {
            background: #f5f5f7;
            padding: 12px 30px;
        }

        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: #000000;
        }

        .breadcrumb-container a {
            color: #000000;
            text-decoration: none;
        }

        .breadcrumb-container a:hover {
            color: #c41e3a;
        }
        
        .main-cont {
            padding: 20px 40px;
        }

        .hero-section-certification {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        @media (max-width: 768px) {
         .hero-section-certification {
            display: flex;
            flex-direction: column;
            /*grid-template-columns: 1fr 1fr;*/
            gap: 30px;
            margin-bottom: 50px;
        }   
        .cert-badge {
            flex-direction: column;
        }
        .certification-badges {
            justify-content: space-between;
        }
        .feature-grid {
            display: flex !important;
            flex-wrap: wrap;
        }
        .industry-columns {
            display: flex !important;
            flex-wrap: wrap;
        } 
        .description-section {
            flex-wrap: wrap;
        }
        .main-cont {
            padding: 20px 10px;
        }
    }

        .product-gallery {
            display: flex;
            gap: 20px;
        }

        .main-product-image {
            flex: 1;
            position: relative;
        }

        .main-product-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .gallery-inquiry-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .gallery-inquiry-btn:hover {
            background: #a01828;
        }

        .gallery-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .thumbnail-grid {
            display: grid;
            grid-template-rows: repeat(4, 1fr);
            gap: 15px;
            max-width: 120px;
        }

        .thumbnail-item {
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .thumbnail-item:hover {
            transform: scale(1.05);
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info-panel {
            display: flex;
            flex-direction: column;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #c41e3a;
            margin-bottom: 35px;
            font-weight: 500;
        }

        .quote-form-container {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .quote-form-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .form-field {
            margin-bottom: 15px;
        }

        .form-field input,
        .form-field select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background: white;
        }

        .submit-inquiry-btn {
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
            margin-bottom: 15px;
        }

        .submit-inquiry-btn:hover {
            background: #a01828;
        }

        .submit-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 14px;
            color: #000000;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .certification-badges {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cert-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .cert-text {
            font-weight: 600;
            color: #1a1a1a;
        }

        .cert-number {
            font-size: 13px;
            color: #000000;
        }

        .cert-statement {
            flex: 1;
            text-align: right;
            color: #000000;
            font-size: 14px;
        }

        .tab-navigation {
            display: flex;
            gap: 0;
            border-bottom: 2px solid #e0e0e0;
            margin: 50px 0 40px;
            background: #d2cadc;
        }

        .tab-button {
            padding: 15px 30px;
            background: transparent;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }

        .tab-button.active-tab {
            color: #c41e3a;
        }

        .tab-button.active-tab::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #c41e3a;
        }

        .description-section {
            display: flex;
            /*grid-template-columns: 1fr 1fr;*/
            gap: 30px;
            margin-bottom: 60px;
        }

        .description-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .description-text {
            color: #000000;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }

        .feature-details h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .feature-details p {
            font-size: 14px;
            color: #000000;
            line-height: 1.6;
        }

        .applications-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

        .applications-image img {
            width: 100%;
            /*height: 100%;*/
            object-fit: cover;
        }

        .applications-list-section {
            background: #2c3e50;
            color: white;
            padding: 20px;
            border-radius: 8px;
        }

        .applications-list-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .apps-list {
            list-style: none;
        }

        .apps-list li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .apps-list li::before {
            content: '•';
            color: #c41e3a;
            font-size: 20px;
        }

        .industry-applications {
            margin-top: 50px;
        }

        .industry-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .industry-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .industry-category {
            margin-bottom: 30px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .category-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .category-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .category-description {
            color: #000000;
            font-size: 16px;
            line-height: 1.6;
        }

        .category-description ul {
            list-style: none;
            margin-top: 10px;
        }

        .cta-inquiry-btn {
            background: #c41e3a;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 20px;
        }

        .cta-inquiry-btn:hover {
            background: #a01828;
        }

        .cta-inquiry-btn::after {
            content: ' ›';
            margin-left: 8px;
        }

        .contact-phone {
            margin-left: 15px;
            color: #000000;
            font-size: 14px;
        }

        .download-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23555" width="100" height="100"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 60px 40px;
            border-radius: 8px;
            text-align: center;
            color: white;
            margin-top: 60px;
        }

        .download-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .download-btn {
            background: #c41e3a;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .download-btn:hover {
            background: #a01828;
        }

        .download-btn::after {
            content: ' ›';
            margin-left: 8px;
        }
        .num {
                text-decoration: auto;
                color: #000;
                font-size: 18px;
                font-weight: 500;
        }
        
/*==========About us css ===================*/
        
        /* About Page Styles */
        .page-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .breadcrumb-custom {
            margin-top: 15px;
        }
        
        .breadcrumb-custom a {
            color: #ff6b6b;
            text-decoration: none;
        }
        
        /* Who We Are Section */
        .who-we-are {
            padding: 80px 0;
            background: #EDEAF4;
        }
        
        .who-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-height:450px;
            max-width:450px;
        }
        
        .who-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .who-image:hover img {
            transform: scale(1.02);
        }
        
        .who-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
        }
        
        .who-content h2 span {
            color: #d32f2f;
        }
        
        .who-content p {
            color: #000000;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .who-features {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }
        
        .who-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .who-features li i {
            color: #d32f2f;
            font-size: 18px;
            width: 25px;
        }
        
        /* Mission Vision Section */
        .mission-vision {
            padding: 60px 0;
            background: #EDEAF4;
        }
        
        .mv-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(211,47,47,0.1);
        }
        
        .mv-icon {
            width: 80px;
            height: 80px;
            background: #d32f2f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .mv-icon i {
            font-size: 38px;
            color: white;
        }
        
        .mv-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        
        .mv-card p {
            color: #000000;
            line-height: 1.7;
        }
        
        /* Industries Section - Exactly as Image */
        .industries-section-about {
            padding: 80px 0;
            background: #EDEAF4;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-subtitle {
            text-align: center;
            color: #000000;
            margin-bottom: 50px;
            font-size: 18px;
        }
        
        .industry-card-about {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
        }
        
        .industry-card-about:hover {
            background: #d32f2f;
            transform: translateY(-5px);
        }
        
        .industry-card-about:hover i,
        .industry-card-about:hover h4,
        .industry-card-about:hover p {
            color: white;
        }
        
        .industry-card-about i {
            font-size: 45px;
            color: #d32f2f;
            margin-bottom: 15px;
            display: block;
        }
        
        .industry-card-about h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .industry-card-about p {
            font-size: 14px;
            color: #000000;
            margin-bottom: 0;
        }
        
        /* Standards Section - Exactly as Image */
        .standards-section-about {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .standard-card-about {
            background: white;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-bottom: 3px solid transparent;
        }
        
        .standard-card-about:hover {
            transform: translateY(-5px);
            border-bottom-color: #d32f2f;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .standard-icon {
            width: 70px;
            height: 70px;
            background: #d32f2f10;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .standard-icon i {
            font-size: 32px;
            color: #d32f2f;
        }
        
        .standard-card-about h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .standard-card-about p {
            font-size: 13px;
            color: #000000;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .page-header h1 { font-size: 32px; }
            .who-content h2 { font-size: 28px; }
            .section-title { font-size: 28px; }
            .who-we-are { padding: 50px 0; }
            .who-image { margin-bottom: 30px; }
        }


/*==============OEM Manufacturing================*/



.oem-banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.oem-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.oem-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.oem-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color:#b71c1c;
}

.oem-banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.oem-banner-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.oem-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    color: #eee;
}

.oem-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-oem-primary {
    background: #d32f2f;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-oem-primary:hover {
    background: #b71c1c;
    color: white;
}

.btn-oem-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-oem-secondary:hover {
    background: white;
    color: #d32f2f;
}

@media (max-width: 768px) {
    .oem-banner-section {
        min-height: 500px;
    }
    .oem-banner-content h1 {
        font-size: 32px;
    }
    .oem-banner-content h3 {
        font-size: 18px;
    }
    .oem-banner-content p {
        max-width: 100%;
        font-size: 14px;
    }
    .btn-oem-primary, .btn-oem-secondary {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/*-----------*/

/* About OEM Section */
.about-oem-section {
    background: #ffffff;
    padding: 60px 0 20px;
}

.about-oem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-oem-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-oem-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.about-oem-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.3;
}

.about-oem-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}

/* 4 Logos - 1 Row with Separator */
.oem-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
    align-items: center;
}

.oem-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 130px;
}

.oem-feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.oem-feature-item span {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    max-width: 100px;
}

.oem-separator {
    width: 1px;
    height: 85px;
    background: #ccc;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .oem-features-row {
        gap: 15px;
    }
    .oem-feature-item span {
        font-size: 11px;
        max-width: 85px;
    }
}

@media (max-width: 768px) {
    .about-oem-section {
        padding: 50px 0;
    }
    .about-oem-title {
        font-size: 24px;
    }
    .about-oem-text {
        font-size: 14px;
    }
    .oem-features-row {
        gap: 10px;
        justify-content: center;
    }
    .oem-separator {
        display: none;
    }
    .oem-feature-item span {
        font-size: 10px;
        max-width: 75px;
    }
    .oem-feature-icon {
        width: 30px;
        height: 30px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .oem-features-row {
        gap: 15px;
    }
    .oem-feature-item span {
        font-size: 11px;
        max-width: 85px;
    }
}

@media (max-width: 768px) {
    .about-oem-section {
        padding: 50px 0;
    }
    .about-oem-title {
        font-size: 24px;
    }
    .about-oem-text {
        font-size: 14px;
    }
    .oem-features-row {
        gap: 10px;
        justify-content: center;
    }
    .oem-separator {
        display: none;
    }
    .oem-feature-item span {
        font-size: 10px;
        max-width: 75px;
    }
    .oem-feature-icon {
        width: 30px;
        height: 30px;
    }
}

/*---------------------------*/


/* OEM Manufacturing Process Section */
.oem-process-section {
    background: #ffffff;
    padding: 30px 0 0px;
}

.process-heading {
    text-align: center;
    margin-bottom: 30px;
}

.process-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0px;
}

.heading-underline {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Process Cards Wrapper */
.process-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

/* Process Card */
.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 13px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 175px;
    margin: 15px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.process-card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Card Number - Center on Border */
.card-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card Icon */
.card-icon {
    margin: 25px 0 15px;
}

.card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Card Title */
.process-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

/* Card Description */
.process-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0;
    font-weight: 400
}

/* Arrow between cards */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: #d32f2f;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .process-cards-wrapper {
        gap: 20px;
    }
    .card-arrow {
        display: none;
    }
    .process-card {
        min-width: calc(33.33% - 20px);
        margin: 10px;
    }
}

@media (max-width: 992px) {
    .process-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .oem-process-section {
        padding: 50px 0;
    }
    .process-heading h2 {
        font-size: 24px;
    }
    .process-card {
        min-width: 100%;
        margin: 15px 0;
    }
    .card-arrow {
        display: none;
    }
}

/*-----------------------*/

/*----------------------*/
/* Fabrics & Industries Section */
.fabrics-industries-section {
    background: #ffffff;
    padding: 60px 0;
}

.section-heading {
    margin-bottom: 8;
}

.section-heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0px !important;
    white-space: nowrap;
}

.heading-underline {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Col-A - Row align stretch */
.row.align-items-stretch {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.row.align-items-stretch > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Left Column - Fabrics List with disc */
.fabrics-list {
    flex: 1;
}

.fabrics-list ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.fabrics-list ul li {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    padding: 6px 0;
    margin: 0;
}

/* Right side - Image Full Cover */
.fabrics-image {
    height: 100%;
    display: flex;
}

.fabrics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Col-B - 4 Cards Grid */
.industries-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.industry-card-4 {
    text-align: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-card-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.industry-card-4 img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

.industry-card-4 span {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a2e;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .fabrics-industries-section {
        padding: 40px 0;
    }
    .section-heading h2 {
        font-size: 20px;
        white-space: normal;
    }
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fabrics-col .row.align-items-stretch {
        flex-direction: column;
    }
    .fabrics-image {
        margin-top: 15px;
        min-height: 180px;
    }
    .industry-card-4 img {
        width: 35px;
        height: 35px;
    }
    .industry-card-4 span {
        font-size: 10px;
    }
    .fabrics-list ul li {
        font-size: 14px;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .industries-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/*--------------------------------------------------*/

/* Why Sentineltex Section */
.why-sentineltex-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.why-heading {
    text-align: center;
    margin-bottom: 40px;
}

.why-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.heading-underline-center {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Why Card - Icon Left */
.why-card { 
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    padding: 30px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon - Left Side */
.why-icon {
    flex-shrink: 0;
    width: 55px;
    height: 65px;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content - Right Side */
.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-sentineltex-section {
        padding: 50px 0;
    }
    .why-heading h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .why-sentineltex-section {
        padding: 40px 0;
    }
    .why-heading h2 {
        font-size: 22px;
    }
    .why-heading {
        margin-bottom: 30px;
    }
    .why-card {
        padding: 15px;
        gap: 12px;
    }
    .why-icon {
        width: 45px;
        height: 45px;
    }
    .why-content h3 {
        font-size: 14px;
    }
    .why-content p {
        font-size: 11px;
    }
}

/*-----------------------------------*/

/* CTA Section */
.oem-cta-section {
    background: #EEEBF2;
    padding: 40px 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cta-content {
    padding-left: 30px;
}

.cta-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}



.cta-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #d32f2f;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.cta-btn-secondary:hover {
    background: #d32f2f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .oem-cta-section {
        padding: 60px 0;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-content h3 {
        font-size: 18px;
    }
    .cta-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .oem-cta-section {
        padding: 50px 20px;
    }
    .cta-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 26px;
    }
    .cta-content h3 {
        font-size: 18px;
    }
    .cta-content p {
        font-size: 14px;
        max-width: 100%;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-image {
        justify-content: center;
    }
    .cta-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 10px 20px;
    }
    .cta-image img {
        max-width: 100%;
    }
}


/*====================Certification page css start here===============================*/

/* Certifications Banner Section */
.cert-banner-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.cert-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.cert-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width:650px !important;
}

.cert-banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 2px;
}

.cert-banner-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.cert-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    color: #eee;
}

.cert-breadcrumb {
    font-size: 14px;
    color: #ccc;
}

.cert-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.cert-breadcrumb a:hover {
    text-decoration: underline;
    color:var(--primary-red);
}

.cert-breadcrumb span {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .cert-banner-section {
        min-height: 450px;
    }
    .cert-banner-content h1 {
        font-size: 32px;
    }
    .cert-banner-content h3 {
        font-size: 18px;
    }
    .cert-banner-content p {
        font-size: 14px;
        max-width: 100%;
    }
}

/*----------------------------------------------------*/


/* Our Commitment to Quality Section */
.commitment-quality-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.commitment-image {
    width: 100%;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.commitment-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.commitment-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.commitment-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 12px;
}

.commitment-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .commitment-quality-section {
        padding: 50px 20px;
    }
    .commitment-content h2 {
        font-size: 26px;
        margin-top: 25px;
    }
    .commitment-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .commitment-content {
        text-align: center;
    }
    .commitment-content p {
        font-size: 14px;
        text-align: left;
    }
}

/*---------------------------------------------------*/

/* Certifications Section */
.certifications-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.certifications-heading {
    text-align: center;
    margin-bottom: 20px;
}

.certifications-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.certifications-heading h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.certifications-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 10px auto 0;
}

/* Cert Card */
.cert-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Card Image */
.cert-card-img {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.cert-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-card-img img {
    transform: scale(1.05);
}

.cert-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.cert-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 12px;
    flex: 1;
}

.cert-view-btn {
    display: inline-block;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.cert-view-btn:hover {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .certifications-section {
        padding: 50px 20px;
    }
    .certifications-heading h2 {
        font-size: 26px;
    }
    .certifications-heading p {
        font-size: 14px;
    }
    .cert-card-img {
        height: 140px;
    }
    .cert-card h3 {
        font-size: 16px;
    }
    .cert-card h4 {
        font-size: 13px;
    }
}

/*--------------------------------------------*/

/* Quality Assurance Process Section */
.quality-process-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.quality-process-heading {
    text-align: center;
    margin-bottom: 10px;
}

.quality-process-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin:0;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Process Cards Wrapper */
.process-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

/* Process Card - Fixed Height */
.process-card {
    border-radius: 12px;
    height: auto;
    padding: 10px 10px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
}
 
/* Arrow between cards */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    color: #d32f2f;
    font-size: 16px;
    font-weight:700;
}

/* Icon Image - No Background */
.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    flex-shrink: 0;
}

.process-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .card-arrow {
        display: none;
    }
    .process-cards-wrapper {
        gap: 20px;
    }
    .process-card {
        min-width: calc(50% - 20px);
        height: 280px;
    }
}

@media (max-width: 768px) {
    .quality-process-section {
        padding: 50px 20px;
    }
    .quality-process-heading h2 {
        font-size: 26px;
    }
    .process-card {
        min-width: 100%;
        height: 280px;
    }
    .process-icon {
        width: 55px;
        height: 55px;
    }
    .process-icon img {
        width: 40px;
        height: 40px;
    }
    .process-card h3 {
        font-size: 16px;
    }
    .process-card p {
        font-size: 12px;
    }
}

/*-----------------------------------------*/

/* Why Buyers Trust Sentineltex Section */
.buyers-trust-section {
    background: #ffffff;
    padding: 40px 0 0;
}

.buyers-trust-heading {
    text-align: center;
    margin-bottom: 20px;
}

.buyers-trust-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px !important;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Trust Card */
.trust-card {
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
}

/* Icon Image - Fixed Height */
.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    flex-shrink: 0;
}

.trust-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Heading - Fixed Min Height */
.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description - Will push to bottom if needed, but align consistently */
.trust-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .buyers-trust-section {
        padding: 40px 20px;
    }
    .buyers-trust-heading {
        margin-bottom: 35px;
    }
    .buyers-trust-heading h2 {
        font-size: 26px;
    }
    .trust-card {
        padding: 20px 15px;
    }
    .trust-icon {
        width: 55px;
        height: 55px;
    }
    .trust-icon img {
        width: 40px;
        height: 40px;
    }
    .trust-card h3 {
        font-size: 16px;
        min-height: 44px;
        margin-bottom: 10px;
    }
    .trust-card p {
        font-size: 14px;
    }
}

/*----------------------------------------------*/

/* Our Quality Promise Section */
.quality-promise-section {
    background: #ffffff;
    padding: 40px 0;
}

.promise-image {
    width: 100%;
}

.promise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.promise-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    margin:12px 0;
} 
.promise-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.promise-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 10px;
}

.promise-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .quality-promise-section {
        padding: 50px 20px;
    }
    .promise-content h2 {
        font-size: 26px;
        margin-top: 25px;
    }
    .promise-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .promise-content {
        text-align: center;
    }
    .promise-content h4 {
        font-size: 15px;
    }
    .promise-content p {
        font-size: 14px;
        text-align: left;
    }
}
/*----------------------------------------*/

/* Certification CTA Section */
.cert-cta-section {
    background: #d32f2f; /* Light Red Background */
    padding: 50px 0;
}

.cert-cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cert-cta-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 90%;
}

.cert-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Primary Button */
.cert-cta-btn-primary {
    background: #ffffff;
    color: #d32f2f;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cert-cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Secondary Button */
.cert-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cert-cta-btn-secondary:hover {
    background: #ffffff;
    color: #d32f2f;
    transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 992px) {
    .cert-cta-section {
        padding: 40px 0;
    }

    .cert-cta-text h3 {
        font-size: 26px;
    }

    .cert-cta-buttons {
        justify-content: flex-start;
        margin-top: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cert-cta-section {
        padding: 40px 20px;
        text-align: center;
    }

    .cert-cta-text h3 {
        font-size: 22px;
    } 

    .cert-cta-text p {
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cert-cta-buttons {
        justify-content: center;
    }

    .cert-cta-btn-primary,
    .cert-cta-btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/*==========================================================*/


/* Industries Banner Section */
.industries-banner-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Overlay - Kam opacity */
.industries-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(0, 0, 0, 5) 0%,rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 5) 100%);
}

.industries-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.industries-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.industries-banner-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.industries-banner-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
    max-width: 100%;
}

.industries-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.industries-btn i {
    margin-left: 8px;
}

.industries-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

/* Right Side - Wrapper for right corner alignment */
.industries-vertical-wrapper {
    display: flex;
    justify-content: flex-end;
}

/* Right Side - Vertical Box (Width 230px) */
.industries-vertical-box {
    position: relative;
    z-index: 2;
    background: #29323F;
    border-radius: 16px;
    padding: 25px 20px;
    width: 250px;
}

.industries-vertical-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.industries-vertical-item:last-child {
    border-bottom: none;
}

/* Image - Fixed width, bigger */
.industries-vertical-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.industries-vertical-item span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-banner-section {
        min-height: auto;
        padding: 60px 0;
    }
    .industries-banner-content h1 {
        font-size: 32px;
    }
    .industries-vertical-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
    .industries-vertical-box {
        width: 100%;
        max-width: 230px;
    }
}

@media (max-width: 768px) {
    .industries-banner-section {
        padding: 50px 20px;
    }
    .industries-banner-content h1 {
        font-size: 28px;
    }
    .industries-banner-content p {
        font-size: 14px;
    }
    .industries-vertical-box {
        padding: 20px;
    }
    .industries-vertical-item img {
        width: 35px;
        height: 35px;
    }
    .industries-vertical-item span {
        font-size: 11px;
    }
}


/*------------------------------------------*/

/* Industries We Serve Section */
.industries-serve-section {
    background: #ffffff;
    padding: 70px 0;
}

.industries-serve-heading {
    text-align: center;
    margin-bottom: 50px;
}

.industries-serve-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.industries-serve-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-top: 20px;
}

/* Industry Card */
.industry-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Card Image - Top Half */
.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .card-image img {
    transform: scale(1.05);
}

/* Circle Icon - Half on image, half on content, left aligned */
.card-icon-circle {
    position: absolute;
    top: 155px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    border: 3px solid #fff;
}

.card-icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Card Content - Bottom Half */
.card-content {
    padding: 20px 15px 20px 20px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    margin-top: 5px;
    text-align: center;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 15px;
    flex: 1;
}

/* Button - Fixed at bottom */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #b71c1c;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .industries-serve-section {
        padding: 50px 0;
    }
    .industries-serve-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .industries-serve-section {
        padding: 40px 20px;
    }
    .industries-serve-heading h2 {
        font-size: 24px;
    }
    .card-image {
        height: 160px;
    }
    .card-icon-circle {
        top: 140px;
        width: 45px;
        height: 45px;
    }
    .card-icon-circle img {
        width: 40px;
        height: 40px;
    }
    .card-content p {
        font-size: 14px;
    }
    .card-link {
        font-size: 13px;
    }
}
/*-----------------------------*/

/* Why Partner with Sentineltex Section */
.partner-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.partner-heading {
    text-align: center;
    margin-bottom: 50px;
}

.partner-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* 6 Cards - 1 Row Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Partner Card */
.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon */
.partner-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Title */
.partner-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Description */
.partner-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0;
    flex: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 50px 20px;
    }
    .partner-heading h2 {
        font-size: 26px;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .partner-card {
        padding: 20px 12px;
    }
    .partner-icon {
        width: 50px;
        height: 50px;
    }
    .partner-icon img {
        width: 38px;
        height: 38px;
    }
    .partner-card h3 {
        font-size: 14px;
    }
    .partner-card p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------*/

/* Built for Performance Simple Section */
.performance-simple-section {
    background: #ffffff;
    padding: 40px 0;
}

.performance-simple-heading {
    text-align: center;
    margin-bottom: 50px;
}

.performance-simple-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.performance-simple-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

/* Row - Flex */
.performance-simple-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Column */
.performance-simple-col {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

/* Icon Circle */
.performance-simple-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.performance-simple-icon img {
    height: 70px;
    object-fit: contain;
}

/* Heading */
.performance-simple-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

/* Divider */
.performance-divider {
    width: 1px;
    height: 100px;
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .performance-divider {
        display: none;
    }
    .performance-simple-row {
        gap: 25px;
    }
    .performance-simple-col {
        min-width: calc(33.33% - 25px);
        flex: unset;
    }
}

@media (max-width: 768px) {
    .performance-simple-section {
        padding: 50px 20px;
    }
    .performance-simple-heading h2 {
        font-size: 28px;
    }
    .performance-simple-heading p {
        font-size: 14px;
    }
    .performance-simple-col {
        min-width: calc(50% - 25px);
    }
}

@media (max-width: 480px) {
    .performance-simple-col {
        min-width: 100%;
    }
    .performance-simple-icon {
        width: 55px;
        height: 55px;
    }
    .performance-simple-icon img {
        width: 28px;
        height: 28px;
    }
}

/*-------------------------------------------*/
/* Industries CTA Section */

.industries-cta-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

.industries-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);*/
}

.industries-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 320px;
    padding: 50px 40px;
}

.industries-cta-content {
    text-align: right;
    color: #fff;
    max-width: 70%;
}

.industries-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
}

.industries-cta-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
}

.industries-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.industries-cta-btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industries-cta-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.industries-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industries-cta-btn-secondary:hover {
    background: #fff;
    color: #d32f2f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .industries-cta-content {
        max-width: 80%;
    }
    .industries-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .industries-cta-wrapper {
        min-height: auto;
    }
    .industries-cta-inner {
        justify-content: center;
        padding: 40px 25px;
        min-height: auto;
    }
    .industries-cta-content {
        text-align: center;
        max-width: 100%;
    }
    .industries-cta-content h2 {
        font-size: 24px;
    }
    .industries-cta-content p {
        font-size: 18px;
    }
    .industries-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .industries-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .industries-cta-btn-primary,
    .industries-cta-btn-secondary {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

/*=============================================================*/


/* Catalogue Banner Section */
.catalogue-banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.catalogue-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.catalogue-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.catalogue-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.catalogue-banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.catalogue-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
}

.catalogue-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.catalogue-btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalogue-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

.catalogue-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalogue-btn-secondary:hover {
    background: #fff;
    color: #d32f2f;
    transform: translateY(-2px);
}

/* Stats with Icons - Left Align */
.catalogue-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.catalogue-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalogue-stat-item img {
    height: 50px;
    object-fit: contain;
}

.catalogue-stat-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.catalogue-stat-item p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .catalogue-banner-section {
        min-height: auto;
        padding: 60px 20px;
    }
    .catalogue-banner-content h1 {
        font-size: 28px;
    }
    .catalogue-banner-content p {
        font-size: 14px;
    }
    .catalogue-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .catalogue-stats {
        gap: 20px;
    }
    .catalogue-stat-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .catalogue-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/*---------------------------------------------------*/

/* Catalogue Products Section */
.catalogue-products-section {
    background: #ffffff;
    padding: 40px 0;
}

.catalogue-products-heading {
    text-align: center;
    margin-bottom: 30px;
}

.catalogue-products-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* 6 Cards - 1 Row Grid */
.catalogue-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Product Card */
.catalogue-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalogue-product-card:hover {
    transform: translateY(-5px);
}

/* Card Image - Top */
.catalogue-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.catalogue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalogue-product-card:hover .catalogue-card-image img {
    transform: scale(1.05);
}

/* Circle Icon - Half on image, half on content */
.catalogue-card-icon {
    position: absolute;
    top: 195px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 2;
    border: 2px solid #fff;
}

.catalogue-card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Card Content */
.catalogue-card-content {
    padding: 20px 15px 20px 20px;
    background: #fff;
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.catalogue-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 10px;
}

/* Button - Bottom Aligned */
.catalogue-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.catalogue-card-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.catalogue-card-link:hover {
    color: #b71c1c;
}

.catalogue-card-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .catalogue-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogue-products-section {
        padding: 50px 20px;
    }
    .catalogue-products-heading h2 {
        font-size: 26px;
    }
    .catalogue-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .catalogue-card-image {
        height: 200px;
    }
    .catalogue-card-icon {
        top: 175px;
        width: 45px;
        height: 45px;
    }
    .catalogue-card-icon img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .catalogue-products-grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------*/


/* Why Choose Sentineltex Section */
.why-choose-section {
    background: #F7F6FC;
    padding: 40px 0;
}

.why-choose-heading {
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    /*margin-bottom: 12px;*/
}

.heading-underline-center {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

/* Card */
.why-choose-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

/* Icon */
.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon img {
    height: 80px;
    object-fit: contain;
}

/* Title */
.why-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

/* Description */
.why-choose-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }
    .why-choose-heading h2 {
        font-size: 26px;
    }
    .why-choose-card {
        padding: 25px 15px;
    }
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    .why-choose-icon img {
        width: 42px;
        height: 42px;
    }
    .why-choose-card h3 {
        font-size: 16px;
    }
    .why-choose-card p {
        font-size: 13px;
    }
}

/*------------------------------------------*/

/* Catalogue Bottom CTA Section */
.catalogue-bottom-cta {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.catalogue-bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.catalogue-bottom-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.catalogue-bottom-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.catalogue-bottom-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #eee;
}

/* Grid - 6 items in 1 row */
.catalogue-bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.catalogue-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.catalogue-bottom-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.catalogue-bottom-item span {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

/* Button */
.catalogue-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.catalogue-bottom-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogue-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogue-bottom-cta {
        min-height: auto;
        padding: 60px 20px;
    }
    .catalogue-bottom-content h2 {
        font-size: 28px;
    }
    .catalogue-bottom-content p {
        font-size: 14px;
    }
    .catalogue-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .catalogue-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*----------------------------------------------------*/


/* Catalogue Download CTA Section */ 
.catalogue-download-cta {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top:10px;
}

.catalogue-download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.catalogue-download-center,
.catalogue-download-right {
    position: relative;
    z-index: 2;
    padding:0 15px;
}

.catalogue-download-center h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.catalogue-download-center p {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 0;
}

.catalogue-download-right {
    text-align: right;
}

.catalogue-download-btn {
    display: inline-block;
    background: #ffffff;
    color: #d32f2f;
    padding: 12px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.catalogue-download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #b71c1c;
}

.btn-bottom-text {
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogue-download-cta {
        min-height: auto;
        padding: 60px 0;
    }
    .row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .col-lg-6, .col-lg-3 {
        width: 100%;
        text-align: center;
    }
    .catalogue-download-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .catalogue-download-center h2 {
        font-size: 22px;
    }
    .catalogue-download-center p {
        font-size: 14px;
    }
    .cert-banner-content {
        width: 370px !important;
    }
}

/*=========================================*/


        /* Breadcrumb */
        .breadcrumb-nav {
            background: #f5f5f7;
            padding: 12px 30px;
        }
        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: #000000;
        }
        .breadcrumb-container a {
            color: #000000;
            text-decoration: none;
        }
        .breadcrumb-container a:hover {
            color: var(--primary-red);
        }

        /* Main Product Page Wrapper */
        .product-page-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 40px;
            display: flex;
            gap: 50px;
            align-items: flex-start;
            min-height: 600px;
        }

        /* LEFT COLUMN - Sticky with professional image size */
        .product-gallery-col {
            flex: 0.8;
            position: sticky;
            top: 100px;
            align-self: flex-start;
            background: transparent;
        }

        .main-image-container {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            max-width: 500px;
        }

        .main-image {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            display: block;
        }

        /* Horizontal Thumbnail Scroll */
        .thumbnail-horizontal {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            max-width: 500px;
        }

        .thumbnail-horizontal::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnail-horizontal::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
        }

        .thumbnail-horizontal::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 10px;
        }

        .thumb-item {
            flex-shrink: 0;
            width: 75px;
            height: 75px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            background: #fff;
        }

        .thumb-item:hover {
            transform: scale(1.05);
            border-color: var(--primary-red-1);
        }

        .thumb-item.active {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 2px rgba(211,47,47,0.3);
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* RIGHT COLUMN - Scrollable Content (Scrollbar Hidden) */
        .product-info-col {
            flex: 1.2;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 20px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .product-info-col::-webkit-scrollbar {
            display: none;
        }

        /* Product Title - Extra Bold */
        .product-title-main {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .product-subtitle {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 25px;
            font-weight: 500;
        }

        /* USP Items with Green Tick */
        .usp-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 30px;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .usp-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 16px;
            color: #2e7d32;
            font-weight: 600;
        }

        .usp-item i {
            font-size: 20px;
            color: #2e7d32;
        }

        /* Button Group - Single Button Left Aligned */
        .button-group {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 35px;
        }

        .btn-request-quote {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            width: auto;
            min-width: 220px;
            cursor: pointer;
        }

        .btn-request-quote:hover {
            background: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211,47,47,0.3);
        }

        .btn-request-quote i {
            margin-right: 8px;
        }

        /* Description - Points style */
        .product-description {
            margin-bottom: 30px;
        }

        .description-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .description-list {
            list-style: none;
            padding: 0;
        }

        .description-list li {
            font-size: 15px;
            line-height: 1.7;
            color: #000000;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .description-list li:before {
            content: "•";
            color: var(--primary-red);
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* Details List - Professional */
        .details-list {
            background: #f8f9fa;
            padding: 24px 28px;
            border-radius: 12px;
            margin-bottom: 35px;
            border-left: 4px solid var(--primary-red);
        }

        .details-list h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--text-dark);
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        .spec-list {
            list-style: none;
            padding: 0;
        }

        .spec-list li { 
            font-size: 14px;
            color: #000000;
            margin-bottom: 12px;
            padding: 4px 0;
            line-height: 1.5;
            padding-left: 20px;
            position: relative;
        }

        .spec-list li:before {
            content: "▸";
            color: var(--primary-red);
            position: absolute;
            left: 0;
            top: 4px;
            font-size: 14px;
        }

        .spec-list li strong {
            font-weight: 700;
            color: #000000;
            min-width: 130px;
            display: inline-block;
        }

        .sku-highlight {
            font-weight: 700;
            color: var(--primary-red);
            background: rgba(211,47,47,0.08);
            padding: 4px 12px;
            border-radius: 4px;
            display: inline-block;
        }

        /* 3 Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 45px;
        }

        .info-card {
            background: #fff;
            border-radius: 10px;
            padding: 22px 18px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--primary-red);
        }

        .info-card i {
            font-size: 38px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .info-card h5 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .info-card p {
            font-size: 13px;
            color: #000000;
            line-height: 1.5;
        }

        /* Certification Badges */
        .cert-badges-footer {
            display: flex;
            gap: 80px;
            justify-content: center;
            align-items: center;
            padding: 20px 0 10px;
            border-top: 1px solid #e0e0e0;
            margin-top: 15px;
        }

        .cert-badge-mini {
            text-align: center;
        }

        .cert-badge-mini img {
            width: 45px;
            height: 45px;
            margin-bottom: 5px;
        }

        .cert-badge-mini span {
            font-size: 11px;
            font-weight: 600;
            display: block;
            color: #333;
        }

        /* Popup Modal */
        .quote-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .quote-modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 500px;
            border-radius: 12px;
            padding: 30px;
            position: relative;
            animation: fadeInUp 0.3s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #999;
        }

        .modal-close:hover {
            color: var(--primary-red);
        }

        .modal-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .form-group-custom {
            margin-bottom: 15px;
        }

        .form-group-custom input,
        .form-group-custom select,
        .form-group-custom textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        .form-group-custom input:focus,
        .form-group-custom select:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .modal-submit-btn {
            background: var(--primary-red);
            color: white;
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 10px;
            transition: var(--transition);
            cursor: pointer;
        }

        .modal-submit-btn:hover {
            background: #b71c1c;
        }

        @media (max-width: 992px) {
            .product-page-wrapper {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
            }
            .product-gallery-col {
                position: relative;
                top: 0;
                width: 100%;
            }
            .main-image-container {
                max-width: 100%;
            }
            .thumbnail-horizontal {
                max-width: 100%;
            }
            .product-info-col {
                max-height: none;
                overflow-y: visible;
                width: 100%;
            }
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .product-title-main {
                font-size: 32px;
            }
            .cert-badges-footer {
                gap: 40px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .cert-badges-footer {
                gap: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .product-title-main {
                font-size: 28px;
            }
            .description-list li {
                font-size: 14px;
            }
            .btn-request-quote {
                width: 100%;
            }
        }
        
        
/*=========================================================*/


        /* Banner Section */
        .products-banner {
            position: relative;
            background: url('img/products-banner.webp') no-repeat center center;
            background-size: cover;
            min-height: 350px;
            display: flex;
            align-items: center;
        }

        .products-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
        }

        .products-banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .products-banner-content h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .products-banner-content p {
            font-size: 16px;
            max-width: 70%;
        }

        /* Products Section */
        .products-section {
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .heading-underline {
            display: inline-block;
            width: 70px;
            height: 3px;
            background: var(--primary-red);
            border-radius: 2px;
        }

        .section-heading p {
            font-size: 16px;
            color: #000000;
            margin-top: 20px;
        }

        /* Product Grid - 4 columns */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .product-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-info {
            padding: 15px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
        }

        .product-detail {
            font-size: 15px;
            color: #000000;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-detail i {
            color: var(--primary-red);
            font-size: 11px;
            width: 14px;
        }

        .view-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--primary-red);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .view-btn:hover {
            color: var(--primary-red-1);
        }

        /* CTA Section */
        .products-cta {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 50px 0;
            text-align: center;
        }

        .products-cta h2 {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .products-cta p {
            font-size: 15px;
            color: #cccccc;
            margin-bottom: 25px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cta-btn-red {
            background: var(--primary-red);
            color: #fff;
            padding: 10px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
        }

        .cta-btn-red:hover {
            background: var(--primary-red-dark);
        }

        .cta-btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 10px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
        }

        .cta-btn-outline:hover {
            background: #fff;
            color: var(--primary-red);
        }

        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .products-banner {
                min-height: 250px;
            }
            .products-banner-content h1 {
                font-size: 28px;
            }
            .products-banner-content p {
                max-width: 100%;
                font-size: 14px;
            }
            .section-heading h2 {
                font-size: 28px;
            }
            .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .products-cta h2 {
                font-size: 22px;
            } 
        }

.custom-product-card{
    min-height: 450px;
}
         
.custom-product-card img{
    height:300px !important;
}

/*-----------------------------------------*/


/* Hover Dropdown */
.dropdown-hover {
    position: relative;
}

.dropdown-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 0;
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 8px 0;
}

.dropdown-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-hover .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.dropdown-hover .dropdown-item:hover {
    background: #d32f2f;
    color: #ffffff;
    padding-left: 25px;
}

@media (max-width: 991px) {
    .dropdown-hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .dropdown-hover.show .dropdown-menu {
        display: block;
    }
}


/* Active Menu Highlight */
.navbar-nav .nav-link.active {
    color: #d32f2f !important;
}

.navbar-nav .nav-link.active::after {
    width: 100% !important;
}

.dropdown-hover.active > .dropdown-toggle {
    color: #d32f2f !important;
}

.custom-cta-btns{
    justify-content:left !important;
}

/* Industry Description - 2 Lines Limit */
.card-content .industry-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 3em;
}

/*==================blog page===================================*/

        .blog-section-catalogue {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .blog-section-catalogue .section-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-section-catalogue .section-heading h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a2e;
        }

        .blog-section-catalogue .section-heading span {
            display: block;
            width: 60px;
            height: 3px;
            background: #d32f2f;
            margin: 12px auto;
        }

        .blog-section-catalogue .section-heading p {
            color: #666;
            font-size: 16px;
        }

        .blog-grid-catalogue {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-card-catalogue {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card-catalogue:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .blog-card-catalogue .blog-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .blog-card-catalogue .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card-catalogue:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-card-catalogue .blog-content {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-catalogue .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #888;
            margin-bottom: 10px;
        }

        .blog-card-catalogue .blog-meta .author {
            color: #d32f2f;
            font-weight: 600;
        }

        .blog-card-catalogue .blog-title {
            font-size: 17px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .blog-card-catalogue .blog-title a {
            color: #1a1a2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-card-catalogue .blog-title a:hover {
            color: #d32f2f;
        }

        .blog-card-catalogue .blog-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 15px;
        }

        .blog-card-catalogue .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .blog-card-catalogue .blog-footer .reading-time {
            font-size: 13px;
            color: #888;
        }

        .blog-card-catalogue .blog-footer .read-more {
            color: #d32f2f;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-card-catalogue .blog-footer .read-more:hover {
            color: #b71c1c;
        }

        .blog-card-catalogue .blog-footer .read-more i {
            transition: transform 0.3s ease;
        }

        .blog-card-catalogue .blog-footer .read-more:hover i {
            transform: translateX(5px);
        }

        .blog-view-all {
            text-align: center;
            margin-top: 40px;
        }

        .blog-view-all .btn-view-all {
            display: inline-block;
            background: #d32f2f;
            color: #fff;
            padding: 12px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .blog-view-all .btn-view-all:hover {
            background: #b71c1c;
            transform: translateY(-2px);
            color: #fff;
        }

        @media (max-width: 992px) {
            .blog-grid-catalogue {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 576px) {
            .blog-grid-catalogue {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }
            .blog-card-catalogue .blog-image {
                height: 180px;
            }
            .blog-section-catalogue {
                padding: 40px 0;
            }
        }

/*============Blog details==============================*/

        .blog-detail-wrapper {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .blog-detail-container {
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            gap: 20px;
            align-items: start;
        }

        /* LEFT COLUMN - Main Content */
        .blog-detail-left {
            min-width: 0;
        }

        .blog-detail-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .blog-detail-image {
            width: 100%;
            height: 420px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .blog-detail-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .blog-detail-body {
            padding: 35px 40px 40px;
        }

        .blog-detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            font-size: 15px;
            color: #888;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #eee;
        }

        .blog-detail-meta .author {
            color: #d32f2f;
            font-weight: 600;
        }

        .blog-detail-meta i {
            margin-right: 8px;
        }

        .blog-detail-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .blog-detail-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .blog-detail-content {
            font-size: 17px;
            color: #333;
            line-height: 1.9;
            margin-top: 10px;
        }

        .blog-detail-content h2,
        .blog-detail-content h3,
        .blog-detail-content h4 {
            color: #1a1a2e;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .blog-detail-content p {
            margin-bottom: 18px;
        }

        .blog-detail-content ul,
        .blog-detail-content ol {
            margin-bottom: 18px;
            padding-left: 25px;
        }

        .blog-detail-content li {
            margin-bottom: 8px;
        }

        .blog-detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }

        .blog-detail-content blockquote {
            border-left: 4px solid #d32f2f;
            padding: 15px 25px;
            margin: 20px 0;
            background: #f8f9fa;
            font-style: italic;
            color: #555;
        }

        /* Social Share */
        .blog-social-share {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 25px;
            margin-top: 30px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
        }

        .blog-social-share .share-label {
            font-weight: 600;
            color: #1a1a2e;
            font-size: 16px;
        }

        .blog-social-share .share-buttons {
            display: flex;
            gap: 10px;
        }

        .blog-social-share .share-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
        }

        .blog-social-share .share-buttons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .share-facebook { background: #1877f2; }
        .share-twitter { background: #000000; }
        .share-linkedin { background: #0a66c2; }
        .share-whatsapp { background: #25d366; }
        .share-email { background: #ea4335; }

        .blog-back-btn {
            display: inline-block;
            background: #d32f2f;
            color: #fff;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .blog-back-btn:hover {
            background: #b71c1c;
            color: #fff;
            transform: translateY(-2px);
        }

        .blog-detail-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        /* RIGHT COLUMN - Sidebar (Sticky) */
        .blog-detail-right {
            position: sticky;
            top: 30px;
            align-self: start;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #d32f2f;
            position: relative;
        }

        .sidebar-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #d32f2f;
        }

        .sidebar-blog-item {
            display: flex;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .sidebar-blog-item:last-child {
            border-bottom: none;
        }

        .sidebar-blog-item:hover {
            padding-left: 8px;
        }

        .sidebar-blog-image {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 8px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .sidebar-blog-image img {
            width: 100%;
            height: 70px;
            object-fit: cover;
        }

        .sidebar-blog-content {
            flex: 1;
            min-width: 0;
        }

        .sidebar-blog-title {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sidebar-blog-title a {
            color: #1a1a2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sidebar-blog-title a:hover {
            color: #d32f2f;
        }

        .sidebar-blog-date {
            font-size: 12px;
            color: #999;
        }

        .sidebar-blog-date i {
            margin-right: 4px;
        }

        .no-recent-blogs {
            text-align: center;
            padding: 30px 0;
            color: #999;
            font-size: 14px;
        }

        .no-recent-blogs i {
            font-size: 32px;
            display: block;
            margin-bottom: 10px;
            color: #ddd;
        }

        @media (max-width: 992px) {
            .blog-detail-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .blog-detail-right {
                position: static;
            }

            .sidebar-card {
                padding: 20px;
            }

            .sidebar-blog-item {
                padding: 10px 0;
            }
        }

        @media (max-width: 768px) {
            .blog-detail-body {
                padding: 25px 20px 30px;
            }
            .blog-detail-image {
                height: 280px;
            }
            .blog-detail-image img {
                height: 280px;
            }
            .blog-detail-title {
                font-size: 24px;
            }
            .blog-detail-meta {
                gap: 15px;
                font-size: 13px;
            }
            .blog-detail-content {
                font-size: 15px;
            }
            .blog-social-share {
                flex-direction: column;
                align-items: flex-start;
            }
            .blog-detail-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .sidebar-blog-image {
                width: 60px;
                height: 60px;
                min-width: 60px;
            }
            .sidebar-blog-image img {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .blog-detail-image {
                height: 220px;
            }
            .blog-detail-image img {
                height: 220px;
            }
            .blog-detail-body {
                padding: 18px 15px 22px;
            }
            .blog-detail-title {
                font-size: 20px;
            }
            .sidebar-blog-image {
                width: 50px;
                height: 50px;
                min-width: 50px;
            }
            .sidebar-blog-image img {
                height: 50px;
            }
        }
        
        /* Tags Section */
.sidebar-tags {
    margin-top: 25px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    cursor: default;
}

.tag-item:hover {
    background: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

@media (max-width: 768px) {
    .tag-item {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/*==================================*/

.floating_btn {
  position: fixed;
  bottom: 20px;
  right: 4px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}
.floating_btn a{
    text-decoration:none;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}


/*===============================*/

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}











