/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004080;
  color: #fff;
  padding: 1rem 1rem;
  position: fixed; /* Makes the header stay at the top */
  top: 0;
  left: 0;
  width: 100%;
  background: #004080;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000; /* Ensures the header stays above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo {
    font-size: 1.5vw;
    font-weight: bold;
    height: 40px
    margin;
}
header .logo img {
    height: auto;
}
header nav ul {
    display: inline;
    list-style: none;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}
header .c-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .c-main-nav ul li {
    margin: 0 10px;
}

header .c-main-nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}


main {
    margin-top: 70px; /* Prevents content from overlapping with the header */
    padding: 20px;
}

.box {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.box.show {
    opacity: 1;
    transform: translateY(0);
}
.contact-bar {
    background-color: #003d82;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 9px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .icon {
    width: 20px;
    height: 20px;
  }
  
  .separator {
    margin: 0 15px;
    color: #fff;
    font-size: 18px;
  }
.logo img {
    max-width: 50%;
    height: auto;
    width: 125px; /* Adjust as needed */
    display: block;
    text-align: right;
    margin-bottom: 10px;
  }
  

/* Hero Section Styling */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* Adjust as per your design */
    color: white;
    overflow: hidden;
}

/* Background image and gradient overlay */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    background-image: url('assets/images/Backgroundhero.jpg'); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Places the image behind text */
    /* Gradient overlay */
    background: linear-gradient(
        rgba(0, 0, 0, 0.897), 
        rgba(0, 0, 0, 0.4)
    ), url('assets/images/Backgroundhero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero {
    background: url('assets/images/Backgroundhero.jpg') no-repeat center center/cover;
    background: linear-gradient(
        rgba(0, 0, 0, 0.897), 
        rgba(0, 0, 0, 0.4)
    ), url('assets/images/Backgroundhero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 16px;
  }
 
/* Hero Content Styling */
.hero-content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-content .btn {
    padding: 10px 20px;
    background-color: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.hero-content .btn:hover {
    background-color: #005bb5;
}


.lhero-image img {
    max-width: 100%; /* Ensures the logo image scales to fit the container */
    height: auto; /* Maintains the aspect ratio of the logo */
}

/* General styles for the navigation */
.c-main-nav {
    background-color: #004080; /* Dark blue background */
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: right;
    font-family: Arial, sans-serif;
    
}

.c-main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Adjust for smaller screens */
    gap: 15px; /* Space between menu items */
}

.c-main-nav li {
    position: relative;
    margin: 0 1rem;
}

.c-main-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 0.5rem 0.75rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.c-main-nav a:hover {
    background-color: #0056b3; /* Lighter blue on hover */
    border-radius: 5px;
}

/* Dropdown button styling */
.c-main-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    margin-left: 0.5rem;
    cursor: pointer;
}

.c-main-nav button:hover {
    color: #ffdd00; /* Highlight color */
}
.c-main-nav ul li {
  position: relative;
  font-size: 12px;
}

.c-main-nav ul li a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: color 0.3s;
}

/* Dropdown Menus */
.c-main-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px;
  display: none; /* Hidden by default */
  z-index: 1001;
}

.c-main-nav ul li:hover ul {
  display: block; /* Show dropdown on hover */
}

.c-main-nav ul li ul li {
  margin: 5px 0;
}

.c-main-nav ul li ul li a {
  color: #003366; /* Dropdown link color */
}

.fa-chevron-down {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* Dropdown menu styles */
.c-main-nav .has--drop ul {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #ffffff;
    color: #004080;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 200px;
}

.c-main-nav .has--drop ul li {
    margin: 0;
}

.c-main-nav .has--drop ul a {
    color: #004080;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.9rem;
}

.c-main-nav .has--drop ul a:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

/* Show dropdown on hover */
.c-main-nav .has--drop:hover ul {
    display: block;
}

/* Accessibility for buttons */
.c-main-nav button[aria-expanded="true"] + ul {
    display: block;
}

.products {
    padding: 2rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-item img {
    width: 45%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 0.5rem 0;
}
.product-item a{
  padding: 10px 20px;
  background-color: #0078D7;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  
}
.product-item a:hover{
  background-color: #005bb5;
}
/* Mobile-Specific Styles */
@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Adjust grid for smaller screens */
    gap: 1rem; /* Reduce gap for better spacing */
  }

  .product-item img {
    width: 30px; /* Make image a bit larger on mobile */
  }

  .product-item h3 {
    font-size: 8px; /* Reduce font size for product title on mobile */
  }
}

/* Very Small Devices (Portrait Phones) */
@media screen and (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Fit more items per row on smaller screens */
    gap: 0.75rem; /* Even smaller gap for mobile */
  }

  .product-item img {
    width: 50px; /* Make image fill the available space */
  }

  .product-item h3 {
    font-size: 0.9rem; /* Further reduce the font size for better readability */
  }
}

.contact {
    background: #f0f8ff;
    padding: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #004080;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.c-ada-accordion {
    max-width: 1200px;
    margin: auto;
}

.c-list--col--03 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style-type: none;
    padding: 0;
}

.c-list--col--03 > li {
    background-color: #e3eaf0;
    border-radius: 15px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-list--col--03 > li h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.c-list--col--03 > li ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.c-list--col--03 > li ul li {
    color: #34495e;
    font-size: 0.9rem;
    margin: 3px 0;
}

.c-list--col--03 > li a {
    color: #2980b9;
    text-decoration: none;
}

.c-list--col--03 > li a:hover {
    text-decoration: underline;
}
.products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .product-card a{
  text-decoration: none;
  color:white;
  }
  .title h3{
    text-align: center;
  }

  .product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .product-card button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
  }

  .product-card button:hover {
    background-color: #0056b3;
  }
  @media screen and (max-width: 768px) {
    .products-section {
      flex-direction: row;  /* Keep items in a row for mobile */
      justify-content: space-between;  /* Spread the items across the screen */
      padding: 10px;
    }
  
    .product-card {
      width: 45%;  /* Make the product cards take up a bit less space */
      max-width: 150px;  /* Limit the maximum width of the cards */
      margin-bottom: 20px;  /* Ensure space between cards */
    }
  
    .product-card button {
      padding: 12px;  /* Slightly bigger padding on buttons */
      font-size: 8px; /* Slight increase in font size */
    }
  }
  
  /* Ensuring layout doesn't change too drastically */
  @media screen and (max-width: 480px) {
    .products-section {
      padding: 10px;
      flex-direction: row;  /* Stack items vertically on very small screens */
      align-items: center;  /* Center the items */
    }
  
    .product-card {
      width: 90%;  /* Ensure the cards are full-width on very small screens */
      max-width: 150px;  /* Don't let cards get too wide */
    }
  }
  .intro-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-size: 8px;
  }

  .intro-section img {
    max-width:100%;
    height: auto;
    margin-bottom: 20px;
  }
/* Mobile Specific Styles */
@media screen and (max-width: 768px) {
  /* Adjust image behavior on smaller screens */
  .intro-section img {
    max-width:25%; /* Ensure the image scales on mobile devices */
    height: auto; /* Keeps the aspect ratio consistent */
    margin-bottom: 15px; /* Reduced margin for mobile */
  }
}

/* Very Small Devices (Portrait Phones) */
@media screen and (max-width: 480px) {
  .intro-section img {
    max-width: 25%; /* Ensure image still scales properly */
    height: auto; /* Maintain image aspect ratio */
    margin-bottom: 10px; /* Further reduce margin on very small screens */
  }
}
  .intro-text {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 12px;
  }
  .intro-text1 {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 12px;
    text-align: center;
  }

  .features-section {
    padding: 20px;
    text-align: center;
  }

  .features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature {
    max-width: 300px;
    text-align: left;
  }
.container {
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
}
.application-field {
    text-align: center;
    padding: 30px 20px;
    background-color: #f0ece3;
}

.application-field h2 {
    font-size: 2rem;
    color: #2b3d64;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: row; /* Stack elements vertically on smaller screens */
    gap: 15px; /* Reduce gap between items on smaller screens */
  }

  .application-field {
    padding: 20px 15px; /* Adjust padding for mobile screens */
  }

  .application-field h2 {
    font-size: .5rem; /* Reduce font size for smaller screens */
    margin-bottom: 15px; /* Reduce bottom margin for mobile */

  }
}
.section {
  display: flex;
  flex-direction: row; 
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  align-items: center; /* Ensures that content is centered vertically */
  justify-content: center;
  background-color: #f4f4f4;
    display: flex;
    align-items: center;
   
  }
.section:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #f9f9f9;
    
  }

  .section img {
    width:300px;
    height: auto;
    object-fit: contain;
   
   
  }
.section .content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  }
  
  .content h2 {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 15px;
    text-align: center;
  }

  .content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
    margin-right: 15px;
  }

  .section ul {
    padding-left: 20px;
  }

  .section ul li {
    margin-bottom: 10px;
    color: #555;
  }
  @media (max-width: 768px) {
    /* Stack images and content vertically on mobile */
    .section img {
      width: 30px;
        margin-bottom: 15px;
        margin-left: 20px;
    }

    .section .content {
        padding: 0 15px;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section p {
        font-size: 1rem;
    }

    .section ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Further scaling for very small screens */
    .section h2 {
        font-size: 8px;
        margin-bottom: 8px;
    }

    .section p {
        font-size: 0.95rem;
    }

    .section ul li {
        font-size: 0.85rem;
    }
}
.container {
  display: flex;
  max-width: 900px;
  margin: 50px auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form {
  background-color: #0a2342;
  color: white;
  padding: 40px 30px;
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: white;
  color: #0a2342;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #ddd;
}

.contact-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
}
/* Carousel container */
.application-field {
  text-align: center;
  margin: 20px;
}

.carousel {
  position: relative;
  display: inline-block;
}

.carousel-content {
  position: relative;
}

.carousel-content img {
  width:300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(85, 23, 255, 0);
  color: black;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.carousel-btn img{
  position:left ;
  width:30px;
  height:auto;
}
.left-btn {
  left: -50px;
}

.right-btn {
  right: -320px;
  margin-top: -7.5rem;
}
.about-Oceanpulse {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 20px auto;
}

.about-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  object-fit: contain;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 24px;
  color: #343a40;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 10px;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #dc3545;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #c82333;
}

.about-images {
  flex: 1;
  margin: 0 auto;
  padding: 20px;
  text-align: center;

}
/* Grid Layout */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
  gap: 10px;
}
.image-grid img {
  width: 60%;
  height: auto;
  object-fit: contain; /* Ensures images maintain aspect ratio while covering the space */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr); /* Adjusts to 2 columns on smaller screens */
  }
}

@media (max-width: 480px) {
  .image-grid {
      grid-template-columns: 1fr; /* Stack images vertically on very small screens */
  }
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnails img {
    width: 50px;
    height: auto;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.thumbnails img:hover {
    border: 2px solid #0078D7;
}

.main-image img {
    width: 300px;
    height: Auto;
    object-fit: cover;
    border: 2px solid #fff;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: ROW;  /* Stack the content vertically on smaller screens */
       /* Center-align the content */
    gap: 20px;
  }

  .about-text {
    flex: none;
    width: 100%;  /* Make the text section take up the full width */
    text-align: center; /* Center text on mobile */
  }

  .about-text h2 {
    font-size: 22px;  /* Slightly smaller heading on mobile */
  }

  .about-text h3 {
    font-size: 18px;  /* Slightly smaller subheading on mobile */
  }

  .about-text p {
    font-size: 14px;  /* Slightly smaller text on mobile */
  }

  .learn-more-btn {
    font-size: 14px;  /* Smaller button text on mobile */
    padding: 8px 16px;  /* Adjust padding for mobile */
  }

  .about-images {
    flex: none;
    width: 50%;  /* Make image section take up full width on smaller screens */
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);  /* Show 2 images in a row on mobile */
  }

  .thumbnails {
    flex-direction: column;  /* Display thumbnails in a row on smaller screens */
    gap: 5px;  /* Reduce gap between thumbnails */
    justify-content: center;  /* Center thumbnails */
  }

  .thumbnails img {
    width: 50px;  /* Smaller thumbnail images */
  }

  .main-image img {
    width: 100px;  /* Adjust main image size for mobile */
  }
}

/* Very Small Devices (Phones in Portrait Mode) */
@media screen and (max-width: 480px) {
  .about-text {
    width: 100%;  /* Ensure full width of text content */
    text-align: center;  /* Center text on mobile */
  }

  .image-grid {
    grid-template-columns: 1fr;  /* Stack images vertically on very small screens */
  }

  .thumbnails img {
    width: 60px;  /* Even smaller thumbnails on very small screens */
  }

  .main-image img {
    width: 100px;  /* Smaller main image on very small screens */
  }

  .learn-more-btn {
    font-size: 12px;  /* Smaller font size for mobile buttons */
    padding: 6px 12px;  /* Adjust padding for mobile */
  }
}
/* General Styles */


/* Main Container */
.container {
    display: flex;
    gap: 20px;
    margin: 20px;
}

/* Product Description */
.product-description {
    flex: 2;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-description h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.product-description h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.product-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Product Sidebar */
.product-sidebar {
    flex: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
    text-align: center;
}

.search-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.search-box input {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-box button {
    width: 80%;
    padding: 8px;
    background-color: #0078D7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-box button:hover {
    background-color: #005bb5;
}

/* Top Rated Products */
.top-rated-products h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.top-rated-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-rated-products li {
    margin-bottom: 10px;
}

.top-rated-products a {
    text-decoration: none;
    color: #0078D7;
    font-size: 14px;
    transition: color 0.3s;
}

.top-rated-products a:hover {
    color: #005bb5;
}
/* Breadcrumb Styles */
.breadcrumb {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 20px 0;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    text-decoration: none;
    color: #0078D7;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #005bb5;
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
    font-weight: 500;
}

.breadcrumb a::after {
    content: "/";
    color: #ccc;
    margin: 0 5px;
}

/* Remove the slash after the last breadcrumb */
.breadcrumb a:last-of-type::after {
    content: "";
}
/* General styling for the section */
/* General Section Styling */
/* General product card styles */
  alignment for product name and price */
.text-center {
    text-align: center;
}

.table-of-contents {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px; 
    margin: 0 auto;
    display:grid;
  }

  .table-of-contents h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
  }

  .table-of-contents ol {
    list-style: none;
    counter-reset: section;
    padding-left: 0;
  }

  .table-of-contents > ol > li {
    counter-increment: section;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #34495e;
  }

  .table-of-contents > ol > li::before {
    content: counters(section, ".") " ";
    font-weight: bold;
    margin-right: 10px;
    color: #3498db;
  }

  .table-of-contents ol ol {
    padding-left: 20px;
    border-left: 2px solid #eaeaea;
    margin-top: 10px;
  }

  .table-of-contents ol ol li {
    margin: 8px 0;
    font-size: 1em;
    color: #555;
  }

  .table-of-contents ol ol li a {
    text-decoration: none;
    color: #2980b9;
    transition: color 0.3s ease;
  }

  .table-of-contents ol ol li a:hover {
    color: #1abc9c;
  }
  .container1 {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .contact-section {
    flex: 2;
    margin-right: 20px;
  }
  
  .contact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .contact-info h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #000;
  }
  
  .contact-info p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .contact-info a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  
  .product-list-section {
    flex: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
  }
  
  .product-list-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .product-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .product-list li {
    font-size: 14px;
    margin: 8px 0;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    color: #555;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px;
    position: relative;
}


.description {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.description p {
    margin-bottom: 15px;
    text-align: justify;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    line-height: 1.5;
}

.content {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
}
.industrial-pumps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: #ffffff;
    text-align:center;
    color: #004080;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header h2 {
    font-size: 2rem;
    color: #2b3d64;
    margin-bottom: 20px;
    text-align: center;
}

.header p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.grid-item {
    text-align: center;
    padding: 10px;
    background-color:transparent;

    border-radius: 15px;
    transition: box-shadow 0.2s ease;
}

.grid-item img {
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.grid-item p {
    font-size: 0.9rem;
    color: #333333;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .industrial-pumps {
      padding: 15px;
      background-size: contain; /* Ensures better adaptation */
  }

  .header h2 {
      font-size: 8px;
  }

  .header p {
      font-size: 5px;
  }

  .grid {
      grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); /* Adjust grid for small screens */
      gap: 0px;
  }

  .grid-item {
      padding: 6px;
  }

  .grid-item img {
      width: 50px;
  }

  .grid-item p {
      font-size: 0.8rem;
  }
}
/* Very Small Devices (Portrait Phones) */

.footer {
    background-color: #004080;
    color: #fff;
    padding: 30px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
  }
  
  .footer-about {
    flex: 1 1 40%;
    margin-right: 50px;
    
  }
  
  .footer-logo {
    max-width: 50px;
    margin-bottom: 10px;
  }
  
  .footer-about p {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    font-size: 10px;
  }
  
  .footer-contact li {
    margin-bottom: 5px;
    font-size: 10px; /* Smaller contact text size */
    display: flex;
    align-items: center;
  }
  
  .footer-contact span {
    font-size: 16px; /* Icons slightly larger */
    margin-right: 8px
  }
  
  .footer-links {
    flex: 1 1 20%;
  }
  
  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom{
    text-align:center;
    margin-top:15px;
    font-size: 12px;
    border-top:1px solid #ffff;
    padding-top:5px;
  }
  .footer-bottom p{
    margin:5px 0;
  }
  .footer-images {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-images img {
    width: 35px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
    }
  
    .footer-images img {
      width: 80px;
      height: 80px;
    }
  }
/* Responsive design */
@media (max-width: 768px) {
  .c-main-nav {
      flex-direction: column;
      align-items: stretch;
  }

  .c-main-nav ul {
      flex-direction: column;
      align-items: stretch;
  }

  .c-main-nav .has--drop ul {
      position: static;
      box-shadow: none;
  }
}
/* Adjust for smaller screens */
@media (max-width: 768px) {
    .c-list--col--03 > li {
        width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .product-description,
    .product-sidebar {
        flex: 1;
    }

    .search-box input,
    .search-box button {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .table-of-contents {
      padding: 15px;
    }

    .table-of-contents h2 {
      font-size: 1.5em;
    }

    .table-of-contents > ol > li {
      font-size: 1em;
    }

    .table-of-contents ol ol li {
      font-size: 0.9em;
    }
  }
  @media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    header nav ul {
        flex-direction: row;
        background-color: #004080;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        display: flex;
    }

    header nav ul.show {
        display: flex;
    }

    header .menu-toggle {
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
    }
}
@media (max-width: 480px) {
    .product-item h3 {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }
}

@media (max-width: 768px) {
  .section img {
      padding: 0px;
  }
}