/* 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 img {
    height: 40px;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}
.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/Prouct-image.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/Prouct-image.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 */
}

/* 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;
}
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;
}
.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 Section */
.hero {
    background: url('../assets/images/Prouct-image.jpg') no-repeat center center/cover;
    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: 100%;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item img {
    width:20%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 0.5rem 0;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
  }
  
  .product-card img {
    max-width: 40%;
    height: auto;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }
  
  .product-card .price {
    font-size: 16px;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 5px;
  }
  
  .product-card .moq {
    font-size: 14px;
    color: #555;
  }


.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;
}

.container {
    display: flex;
    gap: 20px;
    align-items: center;
   
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left:50px;
}

.thumbnails img {
    width:130px;
    height:auto;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
   margin-left:50px;
}

.thumbnails img:hover {
    border: 2px solid #0078D7;
}

.main-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left:50px;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafc;
}

/* Main Container */
.container {
    display: flex;
    gap: 20px;
    margin: 20px;
}

/* Product Description */
.product-description {
    width: 1300px;
    margin-left: 3rem;
    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);
}

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.product-description h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.product-description p {
    font-size: 1rem;
    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 */
.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;
}
.section2.h1{
    text-align: center;
    text-decoration: solid;
}

.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;
  }
  @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;
  }
}