*{
  margin: 0;
  padding: 0;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}


.navbar {
  display: flex;
  align-items: center;
  padding: 3px 30px;
  color: white;

    z-index: 1000; /* Ensure navbars are on top */
    position: sticky; /* Make bottom-row sticky by default */
    top: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, background-color 0.3s ease-out; /* Smooth transitions */
}

.navbar.top-row {
  background-color: #000000;
  justify-content: space-between;
  border-bottom: none; /* Remove bottom border */
  height: 30px;
}

.navbar.bottom-row {
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 12px; /* Increased text size for contact info */
  padding: 8px 12px; /* Added padding for hover effect */
  transition: background-color 0.3s, color 0.3s; /* Smooth hover transition */
}

.contact-info a:hover {
  background-color: white; /* White background on hover */
  color: #000000; /* Red text on hover */
}

.contact-info .icon {
  margin-right: 8px;
  font-size: 14px; /* Slightly larger icon for balance */
}

.powered-by-the-brave-next{
 
}

.powered-by-the-brave-next img{
 height: 160px;
  width: 120px;
  padding-top: 70px;
}

.logo {
  margin-left: 80px;
  padding-top: 20px;
  
}
.logo img{
    width: 130px;
}

.nav-links {
  display: flex;
  list-style-type: none;
 
}

.top-row .nav-links{
  transition: background-color 0.3s, color 0.3s; /* Smooth hover transition */
  padding-left: 280px;
}

.top-row .nav-links .dropdown a:hover {
  background-color: white; /* White background on hover */
  color: #000000; /* Red text on hover */
}


.nav-links .dropdown a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px; /* Increased text size for top row nav links */
  padding: 8px 12px; /* Added padding for hover effect */
  transition: background-color 0.3s, color 0.3s; /* Smooth hover transition */
}

.navbar.bottom-row .nav-links .dropdown a {
  color: #5e5c5c;
  background-color: #f5f5f5;

}

.bottom-row{
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add this line for the box shadow */
  background-color: rgb(255, 255, 255);
  height: 80px;
}

.bottom-row .nav-links {
  margin-left: 200px;
}


.navbar:not(.top-row) .nav-links li:hover > a {
  color: #666;
  background-color: transparent; /* No background change for bottom row */
}

.search-bar {
  display: flex;
  align-items: center;
  padding: 4px; /* Equal padding for square shape */
  border: 1px solid #ccc;
  background-color: white;
  margin-right: 30px;
}



.search-bar input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 140px; /* Full width of container */
  height: 10px;
}

.search-icon {
  margin-right: 8px;
  color: #666;
  font-size: 16px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 660px;
  height: 170px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
  padding-top: 20px;
  margin-top: 6px;
}


.my-box {
  width: 120px;
  height: 10px; /* This fixed height might cause overflow with too much content */
  padding: 20px;
 
  text-align: center;
  position: relative;
  background-color: #f9f9f9;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for box-shadow and potential slight lift */
}

.my-text p{
  color: #000000;
  font-size: 12px;
  font-weight: bolder;
  padding-left: 10px;
}
.my-text p:hover{
  background-color: #cccccc;
}

.red-button {
  background-color: lightgray; /* Default button color is light gray */
  color: #ffffff; /* White text */
  border: none;
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
  cursor: pointer;
  font-size: 16px;
  position: static;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s ease; /* Smooth transition for button color change */
}








.navbar.bottom-row .nav-links .dropdown a {
  color: #000000; /* Original text color */
  position: relative; /* Needed for positioning the ::after pseudo-element */
  text-decoration: none; /* Removes default underline from links */
  transition: color 0.3s ease; /* Smooth transition for text color change */
  background-color: #eee;
  font-size: 14px;
}

.navbar.bottom-row .nav-links .dropdown a:hover {
  color: #000000; /* Change text color to red on hover */
}

.navbar.bottom-row .nav-links .dropdown a::after {
  content: ''; /* Essential for pseudo-elements */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; /* Starts with no width */
  height: 4px; /* Height of the border line */
  background-color: #9e9b9b; /* Color of the border line */
  border-radius: 6px;
  transition: width 0.4s ease-out; /* Smooth transition for width change */
}

.navbar.bottom-row .nav-links .dropdown a:hover::after {
  width: 100%; /* Expands to match the text's full width on hover */

}
@media (max-width: 2000px) {

}

/* Responsive styles for tablets and phones */ 
@media (max-width: 1024px) {
  .logo {
    margin-left: 20px;
    padding-top: 10px;
  }

  .top-row .nav-links {
    padding-left: 0;
  }

  .bottom-row .nav-links {
    margin-left: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .dropdown-content {
    min-width: 100%;
    height: auto;
    position: static;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    padding-top: 0;
    margin-top: 0;
  }

  .search-bar {
    margin-top: 10px;
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin-bottom: 10px;
  }

  .search-bar {
    width: 100%;
    margin-top: 10px;
  }

  .logo {
    margin-left: 0;
    padding: 0;
  }

  .logo img {
    height: 80px;
    width: 80px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .dropdown {
    width: 100%;
  }

  .nav-links .dropdown a {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    width: 100%;
    height: auto;
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Hamburger menu */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
  }
}




@media (max-width: 768px) {
  .navbar.top-row,
  .navbar.bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
   .powered-by-the-brave-next{
   
  }
  .powered-by-the-brave-next a img{
  height: 130px;
  width: 100px;
 position: relative;
 bottom: 70px;
  
 
}


  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links .dropdown {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #444;
  }

  .search-bar {
    width: 100%;
    justify-content: flex-start;
  }

  .search-bar input {
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
  }

  .my-box {
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
  }
}




































































































































































/* Industry Section Styles */
.industry-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading Styles */
.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading .highlight {
    color: #9e9b9b;
}

/* Boxes Container Styles */
.industry-boxes-container {
    display: flex;
    flex-wrap: nowrap; /* Ensures all boxes stay in one row, no wrapping */
    justify-content: center; /* Center the boxes horizontally if space allows */
    gap: 15px; /* Slightly decreased space between the boxes for tighter fit */
    max-width: 100%; /* Ensure container doesn't force extra width */
   /* overflow-x: auto;  Add horizontal scroll if content overflows the viewport */
    padding-bottom: 10px; /* Add some padding if scrollbar appears */
    margin: 0 auto; /* Center the container itself */
}

/* Individual Industry Box Styles */
.industry-box {
    width: 150px; /* DECREASED WIDTH */
    height: 150px; /* DECREASED HEIGHT */
    background-color: #f3efef;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Adjusted inner padding */
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0; /* Prevents boxes from shrinking to fit on smaller screens */
    gap: 20px;
    margin: 16px;
}

/* Hover effect for boxes: Change background to red */
.industry-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    background-color: #000000;
    color: #ffffff; /* Change text color to white for contrast */
}

/* Hover effect for text inside box: Change text color to white */
.industry-box:hover .box-text {
    color: #ffffff;
}

/* Hover effect for icons inside box: Make them white (if SVG and filter works) */
.industry-box:hover .box-icon {
    filter: brightness(0) invert(1); /* Makes a dark icon white */
}


/* Icon Styles */
.box-icon {
    width: 60px; /* DECREASED ICON SIZE */
    height: 60px; /* DECREASED ICON SIZE */
    margin-bottom: 10px; /* Adjusted space between icon and text */
    transition: filter 0.3s ease;
}

/* Text Styles */
.box-text {
    font-size: 16px; /* SLIGHTLY DECREASED FONT SIZE */
    font-weight: 600;
    color: #555555;
    margin: 0;
    transition: color 0.3s ease;
    text-align: center; /* Ensure text is centered within its space */
}

/* Optional: For the faint red abstract design in the background */
.industry-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}










































/* Packaging Section Styles */
.packaging-section {
    text-align: center;
    background-color: #ffffff;
    position: relative;
}

/* Heading Styles */
.packaging-heading {
    font-size: 36px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packaging-heading .highlight-red {
    color: #9e9b9b;
}































































































































/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

/* Typography */
.main-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}
.main-title .highlight {
    color: #9e9b9b;
}
.title-underline {
    width: 5rem;
    height: 0.25rem;
    background-color: #dc2626;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}
/* Reset */

  body {
    font-family: 'Inter', sans-serif, Arial, sans-serif;
    margin: 0;
    color: #eee;
    line-height: 1.6;
  }
  a {
    color: #000000;
    text-decoration: none;
  }

  .slider-wrapper {
    max-width: 2500px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
  }

  .slider-container {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 64px;
    align-items: center;
  }

  .slide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
  }
  .slide-content p {
    font-size: 1.1rem;
    color: #b0b0c3;
    max-width: 400px;
  }
  .slide-content button {
    align-self: start;
    padding: 14px 28px;
    background-color: black;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(107, 114, 255, 0.3);
  }
  .slide-content button:hover,
  .slide-content button:focus {
    background-color: gray;
    outline: none;
  }

  .slide-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    max-width: 420px;
    justify-self: center;
  }
  .slide-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
  }

  /* Responsive mobile */
  @media (max-width: 640px) {
    .slide {
      grid-template-columns: 1fr;
      padding: 32px 24px;
      gap: 24px;
    }
    .slide-image {
      max-width: 100%;
      justify-self: stretch;
    }
    .slide-content h2 {
      font-size: 1.8rem;
    }
    .slide-content p {
      max-width: 100%;
    }
  }






































.logos-section-container {
    background-color: #ffffff; /* White background for the logos stripe */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    padding: 2.5rem 0; /* Adjust padding for animation, removed horizontal padding */
    max-width: 1200px; /* max-w-6xl */
    width: 95%; /* w-full but with some margin */
    margin: 2rem auto; /* Center the container with vertical spacing */
    display: flex;
    justify-content: center; /* Center logos horizontally */
    align-items: center; /* Center logos vertically */
    overflow: hidden; /* Hide anything that overflows */
}

.logos-slider {
    display: flex;
    width: fit-content; /* Allow content to dictate width */
    animation: slide-logos 30s linear infinite; /* Animation applied here */
}

.logos-grid {
    display: flex;
    flex-shrink: 0; /* Prevent shrinking */
    gap: 1.5rem; /* Space between logo items (gap-6) */
    justify-content: center;
    align-items: center;
}

.logo-item {
    padding: 0.5rem; /* p-2 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 80px; /* Minimum width to prevent logos from becoming too small */
    max-width: 120px; /* Max width for consistency */
    height: 80px; /* Fixed height for uniformity */
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the whole image is visible within its container */
}

/* Keyframe animation for sliding logos */
@keyframes slide-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%); /* Moves the content half its width to simulate continuous loop */
    }
}

/* Responsive adjustments */
@media (min-width: 640px) { /* sm breakpoint */
    .logos-grid {
        gap: 2.5rem; /* sm:gap-10, more space on larger screens */
    }
    .logo-item {
        min-width: 100px;
        max-width: 150px;
        height: 100px;
    }
}

@media (min-width: 768px) { /* md breakpoint */
    .logos-section-container {
        padding: 3.5rem 0; /* md:px-8 md:py-14, removed horizontal padding */
    }
    .logos-grid {
        gap: 3.5rem; /* md:gap-14 */
    }
    .logo-item {
        min-width: 120px;
        max-width: 180px;
        height: 120px;
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .logos-grid {
        gap: 4rem; /* lg:gap-16 */
    }
    .logo-item {
        min-width: 150px;
        max-width: 200px;
        height: 150px;
    }
}















































































body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f7f7;
        }
        /* @media (min-width: 640px) { 
            body {
                padding: 2rem;
            }
        } */

        .container-for-sama-list-award {
            position: relative;
            background-color: #ffffff;
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            overflow: hidden;
            padding: 2rem 1rem; /* py-8 px-4 */
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column; /* flex-col */
            align-items: center; /* items-center */
            gap: 2rem; /* gap-8 */
        }
        @media (min-width: 768px) { /* Equivalent to md:flex-row md:items-start */
            .container-for-sama-list-award{
                flex-direction: row;
                align-items: flex-start;
            }
        }
        @media (min-width: 640px) { /* Equivalent to sm:px-8 */
            .container-for-sama-list-award{
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }


        .background-swirl {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 50%;
            overflow: hidden;
            z-index: 0;
            display: none; /* hidden md:block */
        }
        @media (min-width: 768px) {
            .background-swirl {
                display: block;
            }
        }
        .background-swirl svg {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
        }

        /* Left Content Section */
        .content-left {
            width: 100%; /* Default to full width */
            padding: 1rem; /* p-4 */
            z-index: 20;
            height: 500px;
            align-content: center;
        }
        @media (min-width: 768px) { /* md:w-1/2 */
            .content-left {
                width: 50%;
            }
        }
        @media (min-width: 1024px) { /* lg:w-3/5 */
            .content-left {
                width: 60%;
            }
        }

        h1 {
            font-size: 1.875rem; /* text-3xl */
            line-height: 2.25rem;
            font-weight: 800; /* font-extrabold */
            margin-bottom: 1rem; /* mb-4 */
            color: #2d3748; /* text-gray-800 */
            line-height: 1.25; /* leading-tight */
        }
        @media (min-width: 640px) { /* sm:text-4xl */
            h1 {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }
        }
        h1 .highlight {
            color: #9e9b9b; /* text-red-500 */
        }

        p {
            color: #4a5568; /* text-gray-700 */
            line-height: 1.625; /* leading-relaxed */
            margin-bottom: 1.5rem; /* mb-6 */
            font-size: 0.875rem; /* text-sm */
            line-height: 1.25rem;
        }
        @media (min-width: 640px) { /* sm:text-base */
            p {
                font-size: 1rem;
                line-height: 1.5rem;
            }
        }

        ul {
            list-style: none; /* Remove default list bullets */
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem; /* space-y-3 */
        }

        li {
            display: flex; /* flex */
            align-items: center; /* items-center */
            color: #4a5568; /* text-gray-700 */
            font-size: 1rem; /* text-base */
            line-height: 1.5rem;
        }

        .checkmark-icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 2;
            stroke: currentColor;
            fill: none;
            vertical-align: middle;
            margin-right: 0.5rem; /* mr-2 */
            color: #ef4444; /* Red color for the checkmark */
        }

        /* Right Badges Section */
        .badges-right {
            width: 100%; /* Default to full width */
            display: flex;
            flex-direction: column; /* flex-col */
            justify-content: center;
            align-items: center;
            gap: 1.5rem; /* gap-6 */
            padding: 1rem; /* p-4 */
            z-index: 20;
        }
        @media (min-width: 640px) { /* sm:flex-row */
            .badges-right {
                flex-direction: row;
            }
        }
        @media (min-width: 768px) { /* md:flex-col */
            .badges-right {
                flex-direction: column;
            }
            .badges-right {
                width: 50%;
            }
        }
        @media (min-width: 1024px) { /* lg:w-2/5 */
            .badges-right {
                width: 40%;
            }
        }


        .purple-badge {
            background-color: #8B5CF6; /* A shade of purple */
            background-image: linear-gradient(to bottom right, #a78bfa, #8b5cf6); /* Gradient for depth */
            border-radius: 9999px; /* Fully rounded */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            font-weight: 600;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 10;
            width: 100px; /* w-[150px] */
            height: 100px; /* h-[150px] */
            flex-shrink: 0; /* flex-shrink-0 */
        }
        @media (min-width: 640px) { /* sm:w-[180px] sm:h-[180px] */
            .purple-badge {
                width: 180px;
                height: 180px;
            }
        }
        @media (min-width: 768px) { /* md:w-[200px] md:h-[200px] */
            .purple-badge {
                width: 200px;
                height: 200px;
            }
        }

        .green-badge {
            background-color: #22c55e; /* A shade of green */
            background-image: linear-gradient(to bottom right, #4ade80, #22c55e); /* Gradient for depth */
            border-radius: 9999px; /* Fully rounded */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            font-weight: 600;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 10;
            width: 100px; /* w-[150px] */
            height: 100px; /* h-[150px] */
            flex-shrink: 0; /* flex-shrink-0 */
        }
        @media (min-width: 640px) { /* sm:w-[180px] sm:h-[180px] */
            .green-badge {
                width: 180px;
                height: 180px;
            }
        }
        @media (min-width: 768px) { /* md:w-[200px] md:h-[200px] */
            .green-badge {
                width: 200px;
                height: 200px;
            
        }

        .badge-text-large {
            font-size: 1.875rem; /* 3xl */
            line-height: 2.25rem;
            font-weight: 700; /* bold */
        }
        .badge-text-medium {
            font-size: 1.125rem; /* lg */
            line-height: 1.75rem;
        }
        .badge-text-small {
            font-size: 0.875rem; /* sm */
            line-height: 1.25rem;
            text-transform: uppercase; /* uppercase */
            letter-spacing: 0.05em; /* tracking-wide */
        }

        /* Specific text styles for badges */
        .purple-badge .badge-text-small {
            font-size: 0.875rem;
            line-height: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .purple-badge .badge-text-large {
            font-size: 1.875rem;
            line-height: 2.25rem;
            font-weight: 700;
        }
        .purple-badge .badge-text-medium {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }

        .green-badge .badge-text-small {
            font-size: 0.875rem;
            line-height: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .green-badge .badge-text-medium {
            font-size: 1.125rem;
            line-height: 1.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .green-badge .badge-text-large {
            font-size: 1.875rem;
            line-height: 2.25rem;
            font-weight: 700;
        }

      }





























 .case-studies-container {
            background-color: #ffffff;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            max-width: 80rem; /* Max width similar to the image */
            margin: auto;
            padding: 2.5rem 2rem; /* Adjusted padding for top/bottom and sides */
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Align header to start */
            gap: 2rem;
        }

        .section-header {
            width: 100%;
            text-align: left;
            margin-bottom: 0.5rem; /* Reduced margin to match image */
        }

        .section-header h2 {
            font-size: 1.75rem; /* Larger font size for heading */
            font-weight: 800;
            color: #2d3748; /* Dark grey */
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem; /* Tighter margin below heading */
            padding-bottom: 0.5rem; /* Increased padding-bottom for border */
            position: relative; /* For the underline */
            text-align: center;
        }

     

        .case-study-item {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
        }

        @media (min-width: 768px) {
            .case-study-item {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .case-study-image {
            width: 100%;
            border-radius: 0.5rem;
            overflow: hidden;
            flex-shrink: 0; /* Prevents image from shrinking */
        }

        .case-study-image img {
            width: 800px;
            height: 300px;
            display: block;
            border-radius: 0.5rem;
        }

        @media (min-width: 768px) {
            .case-study-image {
                width: 40%; /* Adjust width for desktop */
                max-width: 350px; /* Limit max width of image container */
            }
        }
        @media (min-width: 1024px) {
            .case-study-image {
                width: 35%;
            }
        }

        .case-study-content {
            flex-grow: 1;
            padding: 0 1rem; /* Padding for content */
        }

        .case-study-content h5 {
            font-size: 1rem; /* Slightly larger heading for content */
            line-height: 1.75rem;
            font-weight: bolder; /* Bolder */
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .case-study-content h2 {
            font-size: 1.80rem; /* Adjusted secondary heading size */
            line-height: 1.75rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .contact-link {
            font-size: 0.95rem; /* Slightly larger font */
            line-height: 1.25rem;
            color: #4a5568;
            margin-bottom: 1rem;
            font-style: italic; /* Added italic for "For buy this Machine" */
        }

        .contact-link a {
            color: #3b82f6; /* Blue link color */
            text-decoration: none;
            font-weight: 700; /* Bolder link */
            margin-left: 0.25rem; /* Small space between text and link */
        }

        .case-study-description {
            font-size: 0.9rem; /* Slightly larger text for description */
            line-height: 1.6; /* leading-relaxed with more space */
            color: #4a5568;
            margin-bottom: 1.5rem;
        }

        .read-more-button {
            display: inline-block;
            background-color: #000000; /* Red button */
            color: white;
            padding: 0.75rem 1.75rem; /* Increased padding for button */
            border-radius: 0.25rem;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .read-more-button:hover {
            background-color: #9e9b9b; /* Darker red on hover */
        }






















































/* footer css */




  :root {
    --footer-bg: #000;
    --footer-text: #bbb;
    --footer-heading: #999;
    --footer-hover: #fff;
    --footer-muted: #555;
    --footer-line: #222;
    --icon-bg: #bbb;
    --icon-hover: #888;
    --highlight-dot: #bbb;
  }

  a {
    color: var(--footer-text);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  a:hover, a:focus {
    color: var(--footer-hover);
  }

  footer {
    background-color: var(--footer-bg);
    padding: 40px 20px 20px;
    /* max-width: 1700px; */
    width: 100%;
    margin: auto;
    color: var(--footer-text);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .follow-us,
  .footer-links,
  .footer-topics,
  .footer-newsletter {
    flex: 1 1 160px;
    min-width: 160px;
  }

  .follow-us strong,
  .footer-links strong,
  .footer-topics strong,
  .footer-newsletter strong {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--footer-heading);
  }

  .follow-us strong::before,
  .footer-newsletter strong::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--highlight-dot);
    border-radius: 50%;
    margin-right: 8px;
  }

  .social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--icon-bg);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    text-transform: lowercase;
    transition: background-color 0.3s, transform 0.3s;
  }

  .social-icon:hover,
  .social-icon:focus {
    background: var(--icon-hover);
    transform: scale(1.05);
    text-decoration: none;
  }

  .footer-links ul,
  .footer-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links ul li,
  .footer-topics ul li {
    margin-bottom: 6px;
  }

  .newsletter-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #888;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 6px 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d6d3d3;
    color: var(--footer-text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    margin-right: 110px;
  }

  .newsletter-form input[type="email"]:focus {
    border-bottom-color: var(--footer-hover);
  }

  .newsletter-form input::placeholder {
    color: var(--footer-muted);
  }

  .newsletter-info {
    font-size: 11px;
    margin-top: 12px;
    color: var(--footer-muted);
    max-width: 280px;
    line-height: 1.4;
  }

  .footer-middle {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .footer-logo {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #eee;
  }

  .footer-logo svg {
    width: 100px;
    stroke: #eee;
    stroke-width: 2;
    fill: none;
    margin-bottom: 8px;
  }

  .footer-logo span {
    font-weight: 600;
    font-size: 18px;
  }

  .footer-contact {
    flex: 1 1 280px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
  }

  .footer-contact strong {
    color: var(--footer-heading);
    margin-bottom: 6px;
    display: block;
  }

  .footer-contact address {
    font-style: normal;
    font-weight: 400;
    color: var(--footer-text);
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-contact .contact-icon {
    margin-right: 8px;
    color: var(--footer-text);
  }

  .footer-bottom {
    border-top: 1px solid var(--footer-line);
    padding-top: 20px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-bottom-left {
    flex: 1 1 300px;
  }

  .footer-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 600;
    flex: 1 1 300px;
    justify-content: space-evenly;
  }

  .footer-bottom-right span {
    cursor: pointer;
    transition: color 0.3s;
  }

  .footer-bottom-right span:hover {
    color: var(--footer-hover);
    text-decoration: underline;
  }

  .footer-logo img{
    height: 180px;
    width: 180px;
  }
#links-label,
#topics-label,
#followus-label,
#newsletter-label,
.footer-contact strong
{
  color: white;
  font-size: 18px;
}
  /* Responsive Styles */
  @media (max-width: 920px) {
    .footer-top,
    .footer-middle {
      justify-content: center;
      text-align: center;
      gap: 32px;
    }

    .footer-newsletter {
      min-width: 320px;
    }

    .footer-bottom {
      justify-content: center;
      font-size: 12px;
    }

    .footer-bottom-right {
      justify-content: center;
    }

    .newsletter-form input[type="email"] {
   
    margin-right: 600px;
  }
  }

  @media (max-width: 480px) {
    .footer-top {
      flex-direction: column;
      gap: 30px;
    }

    .follow-us,
    .footer-links,
    .footer-topics,
    .footer-newsletter {
      min-width: 100%;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 12px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
      flex: none;
      justify-content: center;
    }

.footer-links,
.footer-topics,
.footer-newsletter
{
  display: none;
}

#links-label,
#topics-label,
#followus-label,
#newsletter-label,
.footer-contact strong
{
  font-size: 14px;
}


  }

  #newsletter-desc{
    color: #acacac;
  }





/* new code  */




/* --- Media Query for Screens 375px by 667px --- */
 @media (max-width: 375px){
  .navbar {
    padding: 10px 5px; /* Reduce padding for smaller screens */
  }

  .logo img {
    height: 60px; /* Further reduce logo size for small screens */
  }

  .menu-toggle {
    margin-right: auto; /* Align the menu toggle to the right */
  }

  .bottom-row .main-menu-content {
    flex-direction: column; /* Stack links vertically */
    width: 100%; /* Full width */
    background-color: #eee; /* Background for mobile menu */
    position: absolute; /* Position over content */
    top: 50px; /* Adjust based on your header height */
    left: 0;
    right: 0;
    padding: 10px 0; /* Adjust padding */
    transform: translateY(-100%); /* Start off-screen above */
    transition: transform 0.3s ease-out; /* Smooth slide transition */
  }

  /* When the menu is open (class added by JS) */
  .bottom-row .main-menu-content.is-open {
    transform: translateY(0); /* Slide into view */
  }

  .bottom-row .main-menu-content .dropdown {
    width: 100%; /* Full width for dropdowns */
    text-align: center; /* Center text */
    margin-bottom: 5px; /* Reduce margin */
  }

  .bottom-row .main-menu-content .dropdown a {
    padding: 10px; /* Adjust padding for links */
    display: block; /* Make links full width */
  }

  /* Mobile dropdown specific styling */
  .bottom-row .main-menu-content .dropdown-content {
    position: static; /* Stack dropdown content below parent link */
    width: 100%; /* Full width */
    background-color: #f4f4f4; /* Background for sub-menu */
    padding: 5px 0; /* Adjust padding */
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  /* Show dropdown content when parent dropdown is 'active' */
  .bottom-row .main-menu-content .dropdown.active .dropdown-content {
    max-height: 500px; /* Sufficient height to show content */
  }
}
