/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: none; /* Dark theme */
  color: #000000;
  line-height: 1.6;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #1A1A2E;
  position: relative;
}

.logo {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

/* Desktop Navigation */
.nav.desktop {
  display: flex;
  align-items: center;
}

.nav.desktop a {
  color: #00AAFF;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9em;
}

.nav.desktop a:hover {
  color: #F5C242;
}

.buttons.desktop {
  display: flex;
}

.buttons.desktop .btn {
  padding: 10px 20px;
  margin-left: 10px;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 0.9em;
  color: #ffffff;
}

.buttons.desktop .btn.primary {
  background-color: #4A90E2;
  color: #ffffff;
  border: none;
}

/* Mobile Navigation */
.nav.mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #111111;
  z-index: 1000;
  padding: 10px 0;
}

.nav.mobile a {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
}

.nav.mobile.show {
  display: flex;
}

/* Hamburger Menu */
.hamburger {
  display: none; /* Default hidden for desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Close Icon */
.close-icon {
  display: none;
  font-size: 1.2em;
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav.desktop,
  .buttons.desktop {
    display: none;
  }


  .hamburger {
    display: flex;
  }

  .close-icon {
    display: none; /* Default hidden */
  }
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 50px;
}

.team-section h1 {
  font-size: 2.5rem;
  margin-bottom: 100px;
}

.team-section h1 span {
  color: #4A90E2; /* Accent color */
}

.team-logos {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.logo-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #4A90E2;
  border-radius: 50%;
  margin: 0 2.5rem; /* Horizontal spacing between the logos */
}

.logo-box img {
  width: 300px;
  height: 300px;
  object-fit: contain;
 
}

@media (max-width: 768px) {
  .team-logos {
    flex-direction: column; /* Stack logos vertically */
  gap: 2rem;
      
  }

  .logo-box {
    width: 150px; /* Adjust size for smaller screens */
    height: 150px;
    margin: 3.5rem auto; /* Center the logos on the page */
  }
}

footer {
  background-color: #1A1A2E; /* Dark background to match the theme */
  color: #FFFFFF; /* White text */
  text-align: center;
  padding: 20px 0;
  font-family: 'Arial', sans-serif; /* Match the font used in the About Us section */
  font-size: 16px; /* Adjust font size */
  border-top: 1px solid #333; /* Optional: Add a subtle top border for separation */
}

footer a {
  color: #FFFFFF; /* Make the email link white */
  text-decoration: none; /* Remove underline */
}

footer a:hover {
  text-decoration: underline; /* Underline on hover for better UX */
}
