* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #333;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a3d; /* Blue color */
    display: flex;
    justify-content: flex-end;
    padding: 10px 50px;
    color: white;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Header Main Section */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #ffffff; /* White background */
}

.logo img {
    width:110px; /* Adjust logo size to make it bigger */
}


/* Style for the navigation */
nav ul {
    list-style: none; /* Remove bullets */
    display: flex; /* Horizontal menu */
    gap: 20px; /* Space between menu items */
    position: relative; /* Needed for submenu positioning */
}

nav ul li {
    position: relative; /* For submenu positioning */
}

nav ul a {
    text-decoration: none;
    color: #333; /* Default text color */
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
}

/* Submenu styles */
.submenu {
    display: none; /* Hide submenu by default */
    position: absolute; /* Position relative to parent */
    top: 100%; /* Position below the parent menu */
    left: 0;
    background: white;
    list-style: none;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
    z-index: 10;
}

.submenu li {
    margin: 5px 0; /* Space between submenu items */
}

.submenu a {
    color: #1a1a3d; /* Submenu link color */
    padding: 5px 15px;
    display: block; /* Full-width clickable area */
}

/* Show the submenu on hover */
nav ul li:hover .submenu {
    display: block; /* Show submenu on hover */
}

/* Hover effect for submenu links */
.submenu a:hover {
    background-color: #f1f1f1; /* Light background on hover */
}


nav a {
    text-decoration: none;
    color: #000; /* Black text */
    transition: transform 0.3s ease-in-out;
}

nav a:hover {
    color: #1a1a3d; /* Blue hover color */
    text-decoration: underline; /* Add underline on hover */
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-color: #1a1a3d;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Products Section */
.products {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.products .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    border-bottom: 2px solid #1a1a3d; 
    padding-bottom: 25px; 
    margin-bottom: 25px; 
}

.products .product {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.products .product h2 {
    margin-top: 0;
    color: #1a1a3d;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 35px;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a3d;
}

.products .product p {
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

/* Footer */
/* Footer Container */
.footer {
    background-color: #f4f4f4;
    padding: 30px 50px;
    color: #000;
    font-size: 14px;
  }
  
  /* Footer Container */
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  /* Footer Logo */
  .footer-logo {
    text-align: center;
    flex: 1; /* Ensures it occupies equal space between other sections */
  }
  
  .footer-logo img {
    max-width: 700px; /* Adjust logo size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    gap: 50px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  /* Headquarters Section */
  .footer-info {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-info p {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .linkedin-icon img {
    width: 30px;
    height: 30px;
  }
  
  /* Footer Copyright */
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
  }
  
  .footer-links {
    border-left: 1px solid #ddd;
    padding-left: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-links {
      flex-direction: column;
      text-align: center;
      gap: 10px;
      border-left: none;
      padding: 0;
    }
  
    .footer-info {
      text-align: center;
    }
  }
