 
        body {
            font-family: 'Roboto', sans-serif;
        }
        h1, h2, h3, .brand-font {
            font-family: 'Oswald', sans-serif;
        }
        .hero-overlay {
            background: rgba(0, 0, 0, 0.6);
        }
        .red-accent {
            color: #d14747;
        }
        .bg-dark-section {
            background-color: #1A1A1A;
        }
        .card-shadow {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #d14747;
        }
        .bg-darkgray-50{
               background-color: #ffffff;
        }
        @media (min-width: 768px) {
            .brands .md\:grid-cols-6 {
                grid-template-columns: repeat(6, minmax(0, 200px));
                justify-content: center;
            }
            .Leaders .md\:text-7xl {
                font-size: 4.5rem;
                line-height: 1.2;
            }
        }

        #carouselViewport { overflow: hidden; }

        #carouselTrack {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
            will-change: transform;
        }

       .product-home-section .product-card {
            flex: 0 0 calc((100% - 4rem) / 3);
            background: black;
            border-radius: 10px;
            overflow: hidden;
            color: #fff;
            text-align: left;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
       .product-home-section .product-card:hover {
            transform: translateY(-8px);
        }

        .card-img-wrap { height: 210px; overflow: hidden; }
        .card-img-wrap img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.55s ease;
        }
       .product-home-section .product-card:hover .card-img-wrap img { transform: scale(1.08); }

      .product-home-section  .card-body { padding: 1.4rem 1.5rem 1.6rem; }
       .product-home-section .card-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            color: #d14747;
            margin-bottom: 0.55rem;
        }
        .product-home-section .card-text { font-size: 1rem; line-height: 1.65; }

      .product-home-section   .arrow-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.55);
            border: 2px solid rgba(255,255,255,0.15);
            color: #fff; width: 44px; height: 44px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 10;
            transition: background 0.2s, border-color 0.2s, opacity 0.2s;
            backdrop-filter: blur(4px);
        }
      .product-home-section   .arrow-btn:hover { background: #d14747; border-color: #d14747; }
        .product-home-section .arrow-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
       .product-home-section .arrow-btn svg { width: 20px; height: 20px; }
     .product-home-section   .arrow-prev { left: -22px; }
    .product-home-section    .arrow-next { right: -22px; }

     .product-home-section   .dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.8rem; }
     .product-home-section   .dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: #ccc; cursor: pointer; border: none;
            transition: background 0.25s, transform 0.25s;
        }
       .product-home-section .dot.active { background: #d14747; transform: scale(1.35); }

        @media (max-width: 767px) {
          .product-home-section  .product-card { flex: 0 0 100%; }
           .product-home-section #carouselTrack { gap: 1rem; }
           .product-home-section .arrow-prev { left: 0; }
           .product-home-section .arrow-next { right: 0; }
        }

        /* --- Fade-up reveal on scroll --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }
        .reveal-delay-7 { transition-delay: 0.7s; }
        .reveal-delay-8 { transition-delay: 0.8s; }

        /* --- Hero text animation --- */
        .hero-content {
            animation: heroFadeIn 1s ease forwards;
        }
        @media (min-width: 768px) and (max-width: 991px) {
    .md\:gap-\[50px\] {
        gap: 0px !important;
        font-size: 14px !important;
    }
}
        @keyframes heroFadeIn {
            from { opacity: 0; transform: translateX(40px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        /* --- Nav link underline hover animation --- */
        nav ul li {
            position: relative;
            cursor: pointer;
        }
        nav ul li::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d14747;
            transition: width 0.3s ease;
        }
        nav ul li:hover::after { width: 100%; }
        nav ul li:hover { color: #d14747; }

        /* --- Glance card hover lift --- */
        .glance-card {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .glance-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(163,47,47,0.15);
        }

        /* --- Brand logo hover --- */
        .brand-logo {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .brand-logo:hover {
            transform: scale(1.06);
            box-shadow: 0 4px 16px rgba(163,47,47,0.2);
        }

        /* --- Footer link hover --- */
        footer ul li, footer .footer-link {
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        footer ul li:hover { padding-left: 6px; }

        /* --- CTA buttons pulse on hover --- */
        .cta-btn {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .cta-btn:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        .cta-btn:active { transform: scale(0.98); }

        /* --- Mobile hamburger menu --- */
        #mobileMenu {
            display: none;
            flex-direction: column;
            background: white;
            border-top: 1px solid #eee;
            padding: 1rem 1.5rem;
            gap: 1.2rem;
            animation: menuSlideDown 0.3s ease;
        }
        #mobileMenu.open { display: flex; }
        @keyframes menuSlideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        #mobileMenu li {
            list-style: none;
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            text-transform: uppercase;
            color: #1a1a1a;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 0.8rem;
            transition: color 0.2s;
        }
        #mobileMenu li:hover { color: #d14747; }
        #hamburgerBtn {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        #hamburgerBtn:hover { transform: scale(1.1); }

        /* --- Counter animation --- */
        @keyframes countUp {
            from { opacity: 0; transform: scale(0.8); }
            to   { opacity: 1; transform: scale(1); }
        }

        /* --- Responsive: hero height on small screens --- */
        @media (max-width: 640px) {
            section.relative.h-\[700px\] {
                height: auto;
                min-height: 500px;
                padding: 3rem 0;
            }
            .hero-content {
                margin: 0 auto;
            }
        }

        /* --- Responsive: Leaders section font fix --- */
        @media (max-width: 480px) {
            .Leaders h2 {
                font-size: 2.5rem !important;
            }
        }

        /* --- Responsive: ASI glance flex fix --- */
        @media (max-width: 767px) {
            .glance-info-side {
                padding: 2.5rem 1.5rem !important;
            }
            .glance-info-side h3 {
                font-size: 2rem !important;
                margin-bottom: 2rem !important;
            }
        }

        /* --- Responsive: footer grid --- */
        @media (max-width: 640px) {
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .footer-bottom .flex { flex-wrap: wrap; justify-content: center; }
        }

        /* --- Sticky nav shadow on scroll --- */
        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
        }

        /* --- Image section hover zoom --- */
        .section2-img {
            transition: transform 0.5s ease;
            overflow: hidden;
        }
        .section2-img:hover img {
            transform: scale(1.04);
        }

          .glass-card {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .bg-pattern {
            
          background-color: #f4f5f9;
        }
        .gradient-text {
            background: linear-gradient(90deg, #d14747, #b91c1c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

         .value-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid #b91c1c;
        }

          .section-title::before {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: #b91c1c;
            margin-bottom: 1rem;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        .float-anim { animation: float 4s ease-in-out infinite; }

          
        .hero-gradient {
            background: linear-gradient(rgb(0 0 0 / 73%), rgb(0 0 0 / 44%)), url('./images/about-us.jpeg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }
          .bg-letter {
            position: absolute;
            left: -10px;
            top: -20px;
            font-size: 8rem;
            font-weight: 900;
            line-height: 1;
            opacity: 0.03;
            user-select: none;
            pointer-events: none;
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: #ffffff;
        }

        .product-item {
            transition: all 0.3s ease;
        }
        .product-item:hover {
            padding-left: 1.5rem;
        }

       .product-service-page .hero-gradient {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            position: relative;
            overflow: hidden;
        }

     /*.product-service-page   .hero-gradient::before {*/
     /*       content: '';*/
     /*       position: absolute;*/
     /*       top: 0;*/
     /*       left: 0;*/
     /*       right: 0;*/
     /*       bottom: 0;*/
     /*       background: url('./images/about-img.jpg');*/
     /*       opacity: 0.9;*/
     /*   }*/

        .product-card {
            /* transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); */
            border: 1px solid rgba(0,0,0,0.06);
            background: white;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 45px 90px -25px rgba(0,0,0,0.18);
            border-color: #b91c1c;
        }
         .product-card-bg {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            min-height: 500px;
        }

        /* Unified Overlay for readability */
        .product-card-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(235 230 230 / 94%) 0%, rgb(143 139 139 / 78%) 100%);
            z-index: 1;
        }

        .product-card-content {
            position: relative;
            z-index: 2;
        }

        .glass-item {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Individual Backgrounds */
        .bg-ultratech { background-image: url('./images/ultateck-product-img.jpg'); }
        .bg-birla-opus { background-image: url('./images/Birla-Paints-img.jpg'); }
        .bg-fosroc { background-image: url('./images/fosroc-chemicals.img.jpg'); }
        .bg-bosch { background-image: url('./images/bosch-power-tools.jpg'); }

        .brand-badge {
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #b91c1c;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
               background: #b91c1c;
            color: white;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.3);
        }

        .product-card:hover .icon-box {
            background: #b91c1c;
            color: white;
            transform: scale(1.1) rotate(5deg);
            border-color: #b91c1c;
        }
        .product-card-content {
            position: relative;
            z-index: 2;
        }

      .whyus  .hero-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('./images/whyus-img.jpeg');
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        

        .feature-card {
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid #f0f0f0;
            cursor: pointer;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #b91c1c;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .feature-card i {
            transition: transform 0.5s ease;
        }

        .feature-card:hover i {
            transform: scale(1.2) rotate(-10deg);
        }

        

        .form-input {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            margin-bottom: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #b91c1c;
            box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
        }



          .logo-grid-item {
            background: white;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .logo-grid-item:hover {
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border-color: #b91c1c;
        }

        .logo-grid-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .logo-grid-item:hover img {
            filter: grayscale(0%);
        }

       
        
        .hero-pattern {
            background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
            background-size: 40px 40px;
        }

    


      .contact-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(178, 34, 34, 0.1);
        }



         .map-container {
            filter: grayscale(1) invert(0.9);
            transition: all 0.5s ease;
        }

        .map-container:hover {
            filter: grayscale(0) invert(0);
        }

         .hero-mesh {
            background-color: black;
            background-image: radial-gradient(at 0% 0%, rgba(178, 34, 34, 0.15) 0, transparent 50%), 
                              radial-gradient(at 100% 100%, rgba(178, 34, 34, 0.1) 0, transparent 50%);
        }

        
        .job-card {
            transition: all 0.4s ease;
            border: 1px solid #f3f4f6;
        }

        .job-card:hover {
            border-color: #b91c1c;
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }


        .enquiry-container {
            background-image: radial-gradient(circle at 100% 0%, rgba(178, 34, 34, 0.03) 0%, transparent 40%);
        }

        .form-step-active {
            border-left: 4px solid #b91c1c;
            background: linear-gradient(to right, rgba(178, 34, 34, 0.05), transparent);
        }

        .form-input {
            width: 100%;
            padding: 1.25rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #b91c1c;
            box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.05);
        }

        .product-checkbox:checked + label {
            border-color: #b91c1c;
            background-color: rgba(178, 34, 34, 0.02);
        }
 ::after, ::before {
    /* box-sizing: border-box;
    border-width: 0; */
border-style: hidden !important;
   border-color: #e5e7eb00 !important;
}

.bg-black-transparent {
       --tw-bg-opacity: 1;
           background-color: rgb(0 0 0 / 22%);
}

.bg-light-gray{
background: #efefef;
}
    

.logo-width{
width:75%;
}

@media (max-width: 768px){
#header .container.mx-auto.px-1{
    height: 75px;
}
.logo-width{
width:100%;
}
}
