/* [project]/src/components/Navbar.module.css [app-client] (css) */
.Navbar-module__cJzEcG__nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #050505b3;
  border-bottom: 1px solid #ffffff0d;
  width: 100%;
  padding: 1.5rem 0;
  transition: all .3s;
  position: fixed;
  top: 0;
}

.Navbar-module__cJzEcG__navContainer {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Navbar-module__cJzEcG__logo {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-weight: 800;
}

.Navbar-module__cJzEcG__links {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.Navbar-module__cJzEcG__link {
  opacity: .8;
  font-size: .95rem;
  font-weight: 500;
  transition: opacity .3s;
  position: relative;
}

.Navbar-module__cJzEcG__link:hover {
  opacity: 1;
}

.Navbar-module__cJzEcG__link:after {
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.Navbar-module__cJzEcG__link:hover:after {
  width: 100%;
}

.Navbar-module__cJzEcG__contactBtn {
  padding: .5rem 1.25rem;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .Navbar-module__cJzEcG__links {
    display: none;
  }
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  background: #050505e6;
  border-top: 1px solid #ffffff0d;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
}

.Footer-module__S6Hkya__footerContent {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  display: grid;
}

.Footer-module__S6Hkya__brand {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.Footer-module__S6Hkya__logo {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-weight: 800;
}

.Footer-module__S6Hkya__description {
  color: #a0a0a0;
  font-size: .95rem;
  line-height: 1.6;
}

.Footer-module__S6Hkya__title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.Footer-module__S6Hkya__links {
  flex-direction: column;
  gap: .8rem;
  display: flex;
}

.Footer-module__S6Hkya__link {
  color: #a0a0a0;
  font-size: .95rem;
  transition: color .3s;
}

.Footer-module__S6Hkya__link:hover {
  color: var(--accent);
}

.Footer-module__S6Hkya__bottom {
  text-align: center;
  color: #666;
  border-top: 1px solid #ffffff0d;
  padding-top: 2rem;
  font-size: .9rem;
}

/* [project]/src/app/about/page.module.css [app-client] (css) */
.page-module__NfDiEG__main {
  min-height: 100vh;
  padding: 2rem 0;
}

.page-module__NfDiEG__hero {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  margin-top: 4rem;
  padding: 4rem 2rem;
  display: flex;
}

.page-module__NfDiEG__heroContent {
  max-width: 800px;
}

.page-module__NfDiEG__title {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  animation: .8s ease-out page-module__NfDiEG__slideUp;
}

.page-module__NfDiEG__subtitle {
  color: #a0a0a0;
  font-size: 1.25rem;
  line-height: 1.8;
  animation: .8s ease-out .2s both page-module__NfDiEG__slideUp;
}

.page-module__NfDiEG__section {
  border-bottom: 1px solid #ffffff1a;
  padding: 4rem 0;
}

.page-module__NfDiEG__section:last-child {
  border-bottom: none;
}

.page-module__NfDiEG__sectionTitle {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-module__NfDiEG__contentGrid {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}

.page-module__NfDiEG__missionGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  display: grid;
}

.page-module__NfDiEG__servicesGrid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.page-module__NfDiEG__statsGrid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  display: grid;
}

.page-module__NfDiEG__ctaSection {
  text-align: center;
  background: linear-gradient(135deg, #64c8ff1a 0%, #9664ff1a 100%);
  border-radius: 2rem;
  margin: 4rem 0;
  padding: 4rem 2rem;
}

.page-module__NfDiEG__ctaContent {
  max-width: 600px;
  margin: 0 auto;
}

.page-module__NfDiEG__ctaContent h2 {
  color: #fff;
}

@keyframes page-module__NfDiEG__slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .page-module__NfDiEG__title {
    font-size: 2rem;
  }

  .page-module__NfDiEG__subtitle {
    font-size: 1rem;
  }

  .page-module__NfDiEG__sectionTitle {
    font-size: 1.8rem;
  }

  .page-module__NfDiEG__hero {
    min-height: 40vh;
    margin-top: 2rem;
    padding: 2rem 1rem;
  }

  .page-module__NfDiEG__section {
    padding: 2rem 0;
  }

  .page-module__NfDiEG__ctaSection {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }
}

/*# sourceMappingURL=src_0zlyyto._.css.map*/