/* [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/components/ServiceCard.module.css [app-client] (css) */
.ServiceCard-module__MIEO4W__card {
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.ServiceCard-module__MIEO4W__card:before {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff0d, #0000);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ServiceCard-module__MIEO4W__card:hover {
  border-color: #00eeff4d;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px #00eeff26;
}

.ServiceCard-module__MIEO4W__iconWrapper {
  width: 60px;
  height: 60px;
  color: var(--accent);
  z-index: 2;
  background: #00eeff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all .3s;
  display: flex;
  position: relative;
}

.ServiceCard-module__MIEO4W__card:hover .ServiceCard-module__MIEO4W__iconWrapper {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 0 20px #0ef6;
}

.ServiceCard-module__MIEO4W__title {
  z-index: 2;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
}

.ServiceCard-module__MIEO4W__description {
  color: #a0a0a0;
  z-index: 2;
  flex-grow: 1;
  font-size: .95rem;
  line-height: 1.6;
  position: relative;
}

.ServiceCard-module__MIEO4W__glow {
  background: var(--accent);
  filter: blur(50px);
  opacity: 0;
  z-index: 0;
  width: 100px;
  height: 100px;
  transition: opacity .4s;
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.ServiceCard-module__MIEO4W__card:hover .ServiceCard-module__MIEO4W__glow {
  opacity: .3;
}

/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__main {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.page-module___8aEwW__hero {
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  position: relative;
}

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

.page-module___8aEwW__badge {
  color: var(--accent);
  background: #00eeff1a;
  border: 1px solid #00eeff4d;
  border-radius: 20px;
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 0 20px #00eeff1a;
}

.page-module___8aEwW__title {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
}

.page-module___8aEwW__description {
  color: #a0a0a0;
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.page-module___8aEwW__heroButtons {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.page-module___8aEwW__btnSecondary {
  color: #fff;
  border: 1px solid #ffffff1a;
}

.page-module___8aEwW__btnSecondary:hover {
  background: #ffffff0d;
  border-color: #fff3;
}

.page-module___8aEwW__section {
  padding: 8rem 0;
  position: relative;
}

.page-module___8aEwW__sectionHeader {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-inline: auto;
}

.page-module___8aEwW__sectionTitle {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.page-module___8aEwW__sectionDesc {
  color: #a0a0a0;
}

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

.page-module___8aEwW__aboutGrid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  display: grid;
}

@media (max-width: 768px) {
  .page-module___8aEwW__aboutGrid {
    grid-template-columns: 1fr;
  }
}

.page-module___8aEwW__aboutImage {
  background: linear-gradient(135deg, #00eeff1a, #8a2be21a);
  border: 1px solid #ffffff0d;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-module___8aEwW__aboutImage:after {
  content: "";
  background: conic-gradient(transparent, var(--accent), transparent 30%);
  width: 200%;
  height: 200%;
  animation: 4s linear infinite page-module___8aEwW__rotate;
  position: absolute;
}

.page-module___8aEwW__aboutImageInner {
  z-index: 2;
  background: #050505;
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 2px;
}

@keyframes page-module___8aEwW__rotate {
  100% {
    transform: rotate(1turn);
  }
}

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