/* 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
}
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/careers-1.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/careers-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero {
    background: url('../assets/images/careers-1.jpg') no-repeat center center/cover;
    background: linear-gradient(
        rgba(0, 0, 0, 0.897), 
        rgba(0, 0, 0, 0.4)
    ), url('../assets/images/careers-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    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: 1000%;
  }
  
  .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: 0px; /* 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(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-item img {
    width: 80%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 0.5rem 0;
}

.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 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;
  }

  .intro-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .intro-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .intro-text {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.5rem;
  }

  .features-section {
    padding: 20px;
    text-align: center;
  }

  .features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }



  .container {
    display: flex;
    margin-top:10% ;
}

.sidebar {
    width: 250px;
    background: #f4f4f4;
    padding: 20px;
    margin-top: 10%;
    margin-right: 5%;
}

.sidebar h3 {
    margin-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 8px 0;
    cursor: pointer;
}

.sidebar .active {
    font-weight: bold;
    color: #2980b9;
}
.nav-menu {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.nav-menu li:hover {
  background: #f1f1f1;
}

.dropdown > span {
  font-weight: bold;
  cursor: pointer;
  display: block;
}

.submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.dropdown:hover .submenu {
  display: block;
}

.active {
  font-weight: bold;
  border-left: 3px solid red;
}

.profile-box {
  margin-top: 20px;
  padding: 15px;
  background: #e6e6e6;
  text-align: center;
  border-radius: 5px;
}

.profile-btn {
  background: red;
  color: white;
  border: none;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.profile-btn:hover {
  background: darkred;
}


.contact {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.content {
    flex: 1;
    padding: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

.job-btn {
    background: red;
}

.events-btn {
    background: orange;
}

.cards {
    display: flex;
    gap: 20px;
}

.card {
    width: 30%;
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.card img {
    width: 100%;
}

.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 7%;
}

.form-container {
  background: white;
  padding: 20px;
  width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-top: 10px;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: auto;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  
}

.checkbox-group label {
  font-weight: normal;
}

.checkbox-inline {
  margin-top: 10px;
}

.disclaimer {
  font-size: 12px;
  color: gray;
  margin-top: 10px;
}

.disclaimer a {
  color: #2980b9;
  text-decoration: none;
}

.submit-btn {
  background: #2980b9;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.submit-btn:hover {
  background: darkred;
}
/* 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;
  }
  
  .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;
    } 
  .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;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 1px;
    margin-bottom: 20px;
}

.grid-image {
    width: 50%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.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: 3000px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #ffffff;
    text-align: center;
    color: #004080;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.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(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img {
    width: 80px;
    height: 80px;
    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);
}

.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: 20px;
    
  }
  
  .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: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
 
/* Responsive design */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }
    .c-main-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .c-main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    .c-main-nav ul li ul {
      position: static; /* Make dropdown inline */
    }

    .c-main-nav .has--drop ul {
        position: static;
        box-shadow: none;
    }
    body {
      font-size: 16px; /* Set a default font size */
    }
    html {
      scroll-behavior: smooth; /* Smooth scrolling when zooming or navigating */
    }
}
/* 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: column;
        background-color: #004080;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
    }

    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;
    }
}