/* 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: 70px;
}

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:60%;
    height: 125px;
    width: 125px; /* Adjust as needed */
    display: block;
    text-align: right;
    margin-bottom: 10px;
}
    
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f8ff;
    padding: 2rem;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #004080;
}

.hero-content p {
    margin: 1rem 0;
}

.hero-content .btn {
    background: #004080;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}
/* 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;
}

.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: 100%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 0.5rem 0;
}
/* styles.css */

.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;
}

/* 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: "";
}
h1 {
  text-align: center;
  color: #333;
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 10px;
 
}
.office {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.office h2 {
  color: #444;
  margin-top: 0;
}
.office a{
  color: #444;
  margin-top: 0;
  text-decoration: none;
  font-size: 25px;
}
.office p {
  margin: 5px 0;
  color: #555;
}
.office .contact {
  margin-top: 10px;
}
.office .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  text-align: left;
}
.office .contact p {
  margin: 3px 0;
  font-size: 12px;
  color: #666;
}
.office .contact span {
  font-weight: bold;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.locations {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.location {
  width: 50%;
}

h3 {
  color: #000000;
  font-size: 1.2rem;
}

p {
  margin: 10px 0;
  font-size: 12px;
}

a {
  color: #3498db;
  text-decoration: none;
  font-size: 12px;
}
.office:nth-child(1) { background-image: url('../assets/images/Asia_Locations.jpg'); } 
.office:nth-child(2) { background-image: url('../assets/images/America_Location.jpg'); }
.office:nth-child(3) { background-image: url('../assets/images/Africa_Locationss.jpg'); }
.office:nth-child(4) { background-image: url('../assets/images/Australia_Location.jpg'); }
.office:nth-child(5) { background-image: url('../assets/images/Europe_Location.jpg'); }

a:hover {
  text-decoration: underline;
}

.image-container {
  text-align: center;
  margin: 20px 0;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.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;
  }
}