/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000e06;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Header styles */
header {
  text-align: center;
  padding: 30px 20px;
  background-color: #0a0a0a;
}

header h1 {
  font-size: 2rem;
  margin-top: 15px;
  color: #00ffcc;
}

header h2 {
  font-size: 1.2rem;
  color: #aaffee;
  margin-top: 8px;
}
.auth-buttons {
  text-align: right;
  margin: 0px 5px;
}

.login-btn, .signup-btn {
  padding: 4px 8px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.login-btn {
  background-color: #4CAF50;
  margin-right: 10px;
}

.signup-btn {
  background-color: #008CBA;
}

/* Circular logo image */
.top-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #00ffcc;
  display: block;
  margin: 0 auto 10px auto;
}

/* Navigation */
nav {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
  background-color: #011a0c;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

nav ul li {
  flex: 1 1 200px;
  text-align: center;
}

nav ul li a {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  background-color: #093a24;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: #00ffcc;
  color: #002811;
}

/* Image gallery */
.image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 10px;
}

.image-gallery img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #00ffcc;
}
.footer-section {
  background-color: #011b12; /* dark, clean background */
  color: #f0f0f0;         /* soft white text */
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #444;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-language {
  margin-top: 10px;
}

.footer-language label {
  margin-right: 5px;
}

.footer-copy {
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* Mobile optimization: reduce spacing between nav items */
@media (max-width: 768px) {
  nav ul {
    padding: 0;
    margin: 0;
  }

  nav ul li {
    margin: 4px 0; /* reduce vertical space */
    padding: 8px 10px; /* tighter padding */
  }

  nav ul li a {
    font-size: 16px; /* make text comfortably readable */
    display: block;
    padding: 10px 15px;
  }
}
.company-tooltip {
  position: relative;
  cursor: pointer;
  color: #f1f1f1; /* Light text on dark background, adjust as needed */
  font-weight: bold;
}

.tooltip-email {
  visibility: hidden;
  width: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  bottom: 125%; /* above the text */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.company-tooltip:hover .tooltip-email {
  visibility: visible;
  opacity: 1;
}

