/* ========================= */
/* General Body Styles */
/* ========================= */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #e8f8fd;
}

/* ========================= */
/* Header */
/* ========================= */
.gero-header {
  background-color: #004950;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 130px; 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  box-sizing: border-box;
}

.gero-header nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.gero-header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #00e2cc;
  transition: width 0.3s ease;
}

.gero-header nav a:hover::after {
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 80px;
  height: 80px;
}

/* ========================= */
/* Nav Menu */
/* ========================= */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* Contact Button Desktop */
.contact-button-desktop a {
  background-color: #1ce9db;
  color: #004950;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
}

.contact-button-desktop a:hover {
  background-color: #17c7c0;
}

/* Contact Button Mobile (hidden on desktop) */
.contact-button-mobile {
  display: none;
}

.contact-button-mobile a {
  background-color: #1ce9db;
  color: #004950;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
}

/* ========================= */
/* Menu Toggle (Hamburger Icon) */
/* ========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

/* ========================= */
/* Responsive Styles */
/* ========================= */
@media (max-width: 768px) {
  .gero-header {
    padding: 20px 50px; 
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #004950;
    position: absolute;
    top: 100%;
    right: 30px;
    padding: 20px;
    border-radius: 20px;
    z-index: 999;
  }

  .nav-menu a {
    font-size: 18px;
  }

  .nav-menu.active {
    display: flex;
  }

  .contact-button-desktop {
    display: none; /* Hide desktop button in mobile */
  }

  .contact-button-mobile {
    display: flex;
    margin-top: 10px;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* ========================= */
/* Footer */
/* ========================= */
.footer {
  background-color: #000;
  color: white;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px 10px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  text-align: center;
}

.footer-logo-left {
  flex: 1;
  text-align: left;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-brand {
  color: #00d8d8;
  font-size: 24px;
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-info p {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.5;
}

.footer-icon {
  font-size: 20px;
  margin-right: 8px;
  color: #ff4c8b;
}

.footer-bottom {
  border-top: 1px solid #00d8d8;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #00d8d8;
  text-align: center;
}

.powered {
  color: #00d8d8;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-left {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-center {
    margin-bottom: 15px;
  }

  .footer-right {
    text-align: center;
  }
}