/* 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);
}
.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 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 */
}

/* Overview Section */
section.overview {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  margin-left: 5%;
  
  max-width: 800px;
  overflow: hidden;
}
aside {
  width: 30%;
  padding-left: 1px;
  margin-right: 5%;
  float: right;


}
section.overview h1 {
  font-size: 24px;
  color: #00468b;
  margin-bottom: 10px;
  border-top-right-radius: 4px solid #00468b;
  padding-left: 8px;
}

section.overview p {
  margin: 15px 0;
  font-size: 16px;
}

section.overview ul {
  margin: 15px 0;
  padding-left: 20px;
}

section.overview ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style-type: disc;
}

section.overview ul li::marker {
  color: #00468b;
}

section.overview .sub-heading {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  margin-bottom: 10px;
}
.related-products {
  max-width: 1200px;
  margin: 0 auto;
}

.related-products h2 {
  font-size: 24px;
  color: #00468b;
  padding-left: 10px;
  margin-bottom: 20px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.product-card {
  background-color: #ffffff;

  text-align: center;
  width: calc(25% - 20px);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}



.product-card img {
  width: 40%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  background-color:transparent;
}

.product-card h3 {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}
.product-card a{
  color: white;
  text-decoration: none;
}

.product-card p {
  font-size: 14px;
  color: #333;
  margin: 0 10px 15px;
}
.product-card button a{
  text-decoration: none;
}
.product-card button {
  background-color:#00468b;
  color: white;
  border-radius: 7px;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.2s, color 0.2s;
}

.product-card button:hover {
  background-color: #00468b;
  color: #ffffff;
 
  transition: transform 0.2s, box-shadow 0.2s;
}


/* 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 */
}

.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 */
}

.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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.product-showcase {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Section: Image Area */
.image-area {
  flex: 1;
}
.product-showcase.image-container img{
    max-width: 400px; /* Limits the image width to a consistent size */
    max-height: 250px; /* Limits the image height to a consistent size */
}

.main-image img {
  width: 21rem;
  max-width: 25rem;
  height: auto;
  border-radius: 2rem;
  object-fit: cover; /* Ensures the image fills its container without distortion */
  border-radius: 2rem; /* Optional: Adds rounded corners to images */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thumbnails {
  display: flex;
  gap: 1rem;
  margin-top: 8rem;
}

.thumbnails img {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.2s, transform 0.2s;
}

.thumbnails img:hover {
  border-color: #0033cc;
  transform: scale(1.1);
}

/* Right Section: Info Area */
.info-area {
  flex: 1;
  max-width: 500px;
}

.info-area h4 {
  color: #0033cc;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.info-area h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  

}

.info-area p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}


/* Breadcrumb Styles */
.breadcrumb {
    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 */
.py-5 {
    padding: 3rem 0;
}
.card {
    border: none;
    background: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container {
    max-width: 250rem;
    margin: 0 auto;
}.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10rem;
}
.col {
    flex: 1 1 calc(20% - 20px); /* 5 items per row with spacing */
    max-width: calc(20% - 20px);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Product image styling */
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Product details styling */
/* Product Title */
.card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6f61;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 3px;
}
/* Price Styling */
.card-footer a {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.card-footer a:hover {
    background: #0056b3;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
    color: #444;
}

/* Button for product actions */
.btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #007bff;
    color: #007bff;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}



.btn-outline-dark {
    border: 1px solid #343a40;
    color: #343a40;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.btn-outline-dark:hover {
    background: #343a40;
    color: #fff;
}

/* Sale Badge Styling */
.badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* Badge for sale items */
.badge {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Button for product actions */
.btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #007bff;
    color: #007bff;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

/* Footer section styling */
.card-footer {
    padding: 0.75rem;
    background-color: transparent;
    border-top: 1px solid #ddd;
}

/* Text alignment for product name and price */
.text-center {
    text-align: center;
}

.table-of-contents {
    background-color: #e8f8f8;
    border: 1px solid #d0e0e0;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.table-of-contents h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.table-of-contents ol {
    padding-left: 20px;
    color: #333;
}

.table-of-contents ol > li {
    margin-bottom: 10px;
}

.table-of-contents ol > li > ol {
    margin-top: 10px;
    padding-left: 20px;
}

.table-of-contents ol > li > ol > li {
    margin-bottom: 5px;
}

/* Section Header */
.material-overview h1 {
  font-size: 1.8rem;
  color: #0033cc;
  margin-bottom: 20px;
  padding-left: 10px;
  margin-left: 4%;
}

/* Content Layout */
.content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-content: stretch;
}
.content h2{
  text-align: left;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
}
.benefits {
  flex: 1 1 40%;

  max-width: 500px;
  margin-left: 5%;
}

.benefits ul {
  list-style-type: none;
  padding: 0;
}

.benefits ul li {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.benefits ul li strong {
  display: block;
  font-weight: bold;
}

/* Table Styles */
.table-container {
  flex: 1 1 55%;
  overflow-x: auto;
  padding-left: 15%;
}

table {
  width: 80%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

thead {
  background-color: #ccc;
  color: #333;
}

thead th {
  padding: 10px;
  text-align: left;
  font-size: 0.9rem;
}

tbody tr:nth-child(odd) {
  background-color: #f4f4f4;
}

tbody tr:nth-child(even) {
  background-color: #fff;
}

tbody td {
  padding: 10px;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
}


.application-section {
  display: flex;
  max-width: 70rem;
  margin: 0 auto;
  gap: 20px;
  align-items: center;
}

.application-section .image-container {
  position: relative;
  width: 50%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.application-section .image-container img {
  width: 95%;
  height: auto;
  object-fit: cover;
}

.application-section .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.application-section .image-container .overlay h2 {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}

.application-section .image-container .overlay p {
  font-size: 14px;
  margin: 10px 0 20px;
}

.application-section .image-container .overlay button {
 
  
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.application-section .image-container .overlay button:hover {
  background-color: #00468b;
  color: #fff;
}

.application-section .content {
  width: 50%;
}

.application-section .content h2 {
  font-size: 24px;
  color: #00468b;
  border-left: 4px solid #ffffff;
  padding-left: 10px;
  margin-bottom: 15px;
}

.application-section .content p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.application-section .content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.application-section .content ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}


.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) {
    .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%;
    }
}
/* Responsive Design */
@media (max-width: 700px) {
  .overview h1 {
      font-size: 1.5rem;
  }

  .overview p,
  .overview ul li {
      font-size: 0.9rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .content {
      flex-direction: column;
  }

  .benefits ul li {
      font-size: 0.8rem;
  }

  thead th,
  tbody td {
      font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .product-card {
      width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .product-card {
      width: 100%;
  }
}
@media (max-width: 768px) {
  .application-section {
      flex-direction: column;
      gap: 20px;
  }

  .application-section .image-container,
  .application-section .content {
      width: 100%;
  }
}
@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;
  }
}
/* Media Queries for Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero-content h1 {
      font-size: 24px;
  }

  .hero-content p {
      font-size: 14px;
  }

  header .logo {
      font-size: 1rem;
  }

  header nav ul {
      flex-direction: column;
      margin-top: 10px;
  }

  .product-card {
      width: 100%;
  }

  .related-products h2 {
      font-size: 18px;
  }

  .overview p {
      font-size: 14px;
  }
}
@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;
}
}