/* src/TextType.css */
.text-type {
  display: inline-block;
}
.text-type__content {
  white-space: pre-wrap;
}
.text-type__cursor {
  display: inline-block;
  margin-left: 2px;
  font-weight: 400;
  opacity: 1;
  color: inherit;
}
.text-type__cursor--hidden {
  opacity: 0;
}

/* src/LoadingScreen.css */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.loading-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  padding: 0 20px;
}
.loading-logo {
  height: 100px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.loading-text-container {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.loading-text-split {
  color: #000;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .loading-logo {
    height: 15vmin;
    max-height: 80px;
  }
  .loading-text-container {
    margin-left: 3vmin;
  }
  .loading-text-split {
    font-size: 8vmin;
    line-height: 1.2;
  }
}

/* src/Navbar.css */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.navbar-center {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.navbar-center li {
  cursor: pointer;
  position: relative;
}
.navbar-center li a {
  text-decoration: none;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-center li a:hover {
  color: #16724B;
}
.navbar-right {
  display: flex;
  align-items: center;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.dropdown-menu-react {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(15, 15, 15, 0.85);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: none;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 15px;
  min-width: 240px;
  margin-top: 25px;
  list-style: none;
  z-index: 1001;
  overflow: hidden;
}
.dropdown-menu-react::before {
  display: none;
}
.dropdown-menu-react li {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.dropdown-menu-react li:last-child {
  margin-bottom: 0;
}
.dropdown-menu-react li a {
  padding: 12px 20px;
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.dropdown-menu-react li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid transparent;
  padding-left: 20px;
  transform: translateY(-1px);
}
.dropdown-menu-react li a i {
  width: 24px;
  text-align: center;
  margin-right: 12px;
  color: #aaa;
  transition: color 0.2s ease;
  font-size: 16px;
}
.dropdown-menu-react li a:hover i {
  color: #16724B;
}
.dropdown-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 8px 10px;
}
@media (max-width: 768px) {
  .navbar-center {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* src/NavbarCTA.css */
.navbar-cta {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .navbar-cta:hover {
    background-color: #16724B !important;
    border-color: #16724B !important;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(22, 114, 75, 0.5);
  }
}
.navbar-cta:active {
  transform: scale(0.95);
  background-color: #16724B;
  border-color: #16724B;
}
.navbar-cta:visited,
.navbar-cta:focus {
  color: white !important;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (hover: hover) {
  .navbar-cta:focus:hover {
    background-color: #16724B !important;
    border-color: #16724B !important;
    box-shadow: 0 0 15px rgba(22, 114, 75, 0.5);
  }
}
