    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #ffffff; 
            zoom: 0.8;
            
            
        }

        /* For header and navigation */


header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #f4f4f4;
    font-size: 17px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

nav .logo img {
    height: 220px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 50px;
    font-size: 19px;
    position: relative; /* Ensure dropdown content is positioned relative to the parent */
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff0000;
}

/* Animation for nav items */
.nav-item {
    opacity: 0; /* Start fully transparent */
    transform: translateY(20px); /* Start slightly below */
    animation: fadeIn 0.5s forwards; /* Apply fadeIn animation */
}

/* Keyframes for the fadeIn effect */
@keyframes fadeIn {
    from {
        opacity: 0; /* Fully transparent */
        transform: translateY(20px); /* Start below */
    }
    to {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Normal position */
    }
}

/* Add delays for each nav item */
.nav-item:nth-child(1) {
    animation-delay: 0.2s; /* Delay for Home */
}

.nav-item:nth-child(2) {
    animation-delay: 0.4s; /* Delay for About Us */
}

.nav-item:nth-child(3) {
    animation-delay: 0.6s; /* Delay for Services */
}

.nav-item:nth-child(4) {
    animation-delay: 0.8s; /* Delay for Products */
}

.nav-item:nth-child(5) {
    animation-delay: 1s; /* Delay for Contact Us */
}



/* Ensure the nav bar is above other elements */
nav {
    position: relative;
    z-index: 1000; /* Ensure navbar stays above other content */
}

/* Dropdown Styles */
.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1100; /* Ensure dropdown stays above slideshow */
    min-width: 200px;
    border-radius: 5px;
    overflow: hidden;
}

/* Fix dropdown overlapping issue */
.dropdown-content li {
    list-style: none;
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1101;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px;
}

.dropdown-content li a:hover {
    background-color: #ff0000;
    color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Ensure slideshow doesn't overlap */
.slideshow-container {
    position: relative;
    z-index: 500; /* Keep it below dropdown */
}


        
/* Slideshow industries container */
.brands {
    padding: 50px 30px;
    background-color: #ffffff;
    text-align: center;
}

.brands h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide3 {
    min-width: 20%;
    box-sizing: border-box;
    text-align: center;
}

.slide3 i {
    font-size: 30px;
    color: #cc0415;
    margin-bottom: 10px;
}

.slide3 h3 {
    margin-top: 10px;
}

/* Slide show for container */



body {
  background-color: #ffffff;
  
}
        .container {
            position: relative;
            
            max-width: 1900px;
            margin: 50px auto;
            height: 700px;
            
            background: #f5f5f5;
            box-shadow: 0 30px 50px #dbdbdb;
            overflow: hidden;
        }
        

       .container .slide2 .slide-item {
            width: 210px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px ;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
        }
        
 .slide2 .slide-item:nth-child(1){
 top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
 
 
 }
.slide2 .slide-item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide2 .slide-item:nth-child(3){
    left: 50%;
}
.slide2 .slide-item:nth-child(4){
    left: calc(50% + 220px);
}
.slide2 .slide-item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide2 .slide-item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}
        

  
        
     .slide-item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}   
        .content button:hover {
        color: #FFFFFF; /* White */
        background-color: #FF8C00; /* Dark orange */
    }




.slide2 .slide-item:nth-child(2) .content{
    display: block;
}

   
    .content .name{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
	font-size: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
        
.button {
    width: 100%;
    display: flex;
    justify-content: center;
    position: center;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #d90408;
    color: #fff;
}
        
        
/* General section styling */

/* product items */
#products {
    padding: 50px 0;
    background-color: #ffffff;
    
}

#products h2 {
    text-align: center;
    font-size: 2.0em;
    color: #333; /* General color for the non-highlighted text */
    
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}

#products h2 .highlight {
    color: #d90408; /* Apply the orange color to the highlighted "We" */
}


/* Dual color animation for h2 */


.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    animation: animate 1s ease-in-out;
    opacity: 0;
    filter: blur(33px);
    transform: translateY(100px);
    animation-fill-mode: forwards;
}

/* Hover effect for product items */
.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
   width: 190px; /* Increased from 50px to 100px */
    height: 190px; /* Increased from 50px to 100px */
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 1.5em;
    margin: 20px 0 10px;
    color: #333;
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item p {
    color: #777;
    font-size: 1em;
}

/* Keyframe animation for product items */
@keyframes animate {
    from {
        opacity: 0;
        transform: translateY(100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* our Services */

/* Styling for the services section */
#services {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    color: #333;
}

#services h2 .highlight {
    color: #d90408;
}

.service-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-item {
    flex: 1 1 30%;
    max-width: 300px;
    margin: 20px;
    text-align: center;
    color: #333;
    opacity: 0; /* Initially hidden */
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-item.active {
    opacity: 1;
    transform: translateY(0);
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: hue-rotate(30deg);
}

.service-item p {
    font-size: 1.1em;
    margin-top: 10px;
    color: #333;
}

@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        max-width: 90%;
    }
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translateY(100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}




/* what we do */
/* Section Styling */
#whatwedo {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

#whatwedo h2 {
    font-size: 2.5em;
    padding: 50px 0px;
    color: #333;
}

#whatwedo h2 .highlight {
    color: #ed0404; /* Orange highlight for 'We' */
}

#whatwedo .intro-text {
    font-size: 19px;
    color: #666;
    margin-bottom: 40px;
}

.container1 {
            position: relative;
            
            max-width: 1900px;
            margin: 50px auto;
            height: 700px;
            
            background: #f5f5f5;
            box-shadow: 0 30px 50px #dbdbdb;
            overflow: hidden;
        }

/* Services Grid Styling */
.services-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    
}

.service-item {
    width: 40%;
    text-align: center;
    margin-bottom: 20px;
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5em;
    color: #333;
}

.service-item p {
    font-size: 19px;
    color: #666;
}

.service-item .learn-more {
    color: #ed0404;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

/* Concept to Manufacturing Section */
#concept-to-manufacturing {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

#concept-to-manufacturing h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
}

#concept-to-manufacturing h2 .highlight {
    color: #ed0404; /* Orange highlight for 'To' */
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    position: relative;
}

.process-steps .step {
    padding: 20px;
    margin: 10px;
    font-size: 1.2em;
    color: #333;
    flex: 1;
    max-width: 250px;
    position: relative;
    border: 2px solid #ddd; /* Box border */
    background-color: #fff;  /* Box background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    transition: 0.3s ease;
}

.process-steps .step:hover {
    color: #ed0404; /* Change text color on hover */
    border-color: #ed0404; /* Change border color on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
    transform: translateY(-5px); /* Lift the step on hover */
}

/* Add arrows between steps */
.process-steps .step:not(:last-child)::after {
    content: '→';
    font-size: 1.5em;
    color: #333;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.process-steps .step:hover::after {
    color: #ed0404; /* Change arrow color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .process-steps .step {
        max-width: 90%;
    }

    /* Remove arrows in column layout */
    .process-steps .step:not(:last-child)::after {
        content: '';
    }
}

/* chatbot  */

 
        .chatbot-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffffff;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 20px;
            height:300px;
            width: 300px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
        }
        .chatbot-header {
            background-color: #000000;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        .chatbot-body {
            padding: 20px;
            height: 150px;
            overflow-y: auto;
        }
        .chatbot-footer {
            display: flex;
            padding: 10px;
        }
        input[type="text"] {
            width: 70%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            padding: 10px;
            background-color: #c70202;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #000000;
        }
        .bot-message, .user-message {
            margin: 10px 0;
        }
        .user-message {
            text-align: right;
            color: #c70202;
        }
        
        .service-options {
            margin: 10px 0;
        }
        
        /* Radio button section */
    .service-options {
        margin: 15px 0;
    }

    .service-options label {
        display: block;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .service-options input[type="radio"] {
        margin-right: 10px;
    }
        .confirm-button {
            padding: 10px;
            background-color: #c70202;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .contact-us-button {
            margin-top: 10px;
            color: #c70202;
        }

  /* Modal Styles */
      #launchPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#launchPopup.show {
    opacity: 1;
    visibility: visible;
}

#popupContent {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

#launchPopup.show #popupContent {
    transform: scale(1);
}

#popupContent h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

#popupContent p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

#popupContent .popup-btn {
    display: inline-block;
    padding: 12px 18px;
    margin: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#popupContent .popup-btn.primary {
    background: #d90408;
    color: white;
}

#popupContent .popup-btn.primary:hover {
    background:#d90408;
}

#popupContent .popup-btn.secondary {
    background: #ddd;
    color: #333;
}

#popupContent .popup-btn.secondary:hover {
    background: #bbb;
}
      


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }
}



.whatsapp-popup {
    display: none; /* Hidden by default */
    position: fixed;
    
    bottom: 80px; /* Adjust to position above the button */
    left: 30px; /* Change from right to left */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Change from right to left */
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #128C7E; /* WhatsApp button color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}


/* Styles for tablets (less than 768px) */
@media (max-width: 768px) {
	 body {
        zoom: 0.8; /* Reset zoom */
    }

    header {
        padding: 10px 15px;
    }

    /* Adjust top bar and navigation for mobile */
    .top-bar {
        flex-direction: column;
        font-size: 12px;
        padding: 10px;
    }

    nav {
        flex-direction: column;
        padding: 10px;
    }

    nav .logo img {
        height: 80px; /* Reduce logo size */
        margin-bottom: 10px;
    }
	
    
    nav ul {
        flex-direction: column;
        margin-right: 0;
    }
    
    nav ul li {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .container {
        padding: 20px;
        max-width: 100%;
    }

    .slide-wrapper {
        flex-direction: column;
    }

    .product-item {
        width: 100%; /* Make products full-width on smaller screens */
    }

    .service-item {
        max-width: 90%;
    }
}

/* Styles for mobile phones (less than 480px) */
@media (max-width: 480px) {
	body {
        font-size: 16px; /* Adjust font size for smaller screens */
        zoom: 0.8;
    }
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    .container {
            position: relative;
            
            max-width: 1900px;
            margin: 50px auto;
            height: 350px;
            
            background: #f5f5f5;
            box-shadow: 0 30px 50px #dbdbdb;
            overflow: hidden;
        }
        

       .container .slide2 .slide-item {
            width: 210px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px ;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
        }
        
 .slide2 .slide-item:nth-child(1){
 top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
 
 
 }
.slide2 .slide-item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide2 .slide-item:nth-child(3){
    left: 70%;
}
.slide2 .slide-item:nth-child(4){
    left: calc(50% + 220px);
}
.slide2 .slide-item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide2 .slide-item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}
        

  
        
     .slide-item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}   
        .content button:hover {
        color: #FFFFFF; /* White */
        background-color: #FF8C00; /* Dark orange */
    }




.slide2 .slide-item:nth-child(2) .content{
    display: block;
}

   
    .content .name{
    font-size: 40px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
	font-size: 28px;
	text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
        
.button {
    width: 100%;
    display: flex;
    justify-content: center;
    position: center;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #d90408;
    color: #fff;
}
    .container {
        padding: 20px;
        max-width: 100%;
        
        
    }

    .slide {
        min-width: 50%;
    }

    .product-grid {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
        margin: 10px 0;
    }

    /* Chatbot container adjustments */
    .chatbot-container {
        width: 100%;
        height: 100vh;
        right: 0;
        bottom: 0;
    }
 
}
/* Use flexbox for navigation */
nav ul {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

/* Use grid for products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

