


/* =========================
   BASE / RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Inter, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #15152b, #0b0b12);
  color: #e6e6eb;
  line-height: 1.65;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #ffffff;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #ffffff;
}

p {
  color: #b8b8c7;
  max-width: 720px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #6a5cff, #a855f7);
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(106, 92, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(106, 92, 255, 0.45);
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 160px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(106,92,255,0.15), transparent 60%);
  pointer-events: none;
}

.hero p {
  margin: 24px auto 48px;
  font-size: 1.1rem;
}

#typewriter {
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.75);
  padding-right: 6px;
  animation: blinkCursor 0.8s steps(2) infinite;
}

@keyframes blinkCursor {
  0% { border-color: rgba(255,255,255,0.75); }
  50% { border-color: transparent; }
  100% { border-color: rgba(255,255,255,0.75); }
}




/* =========================
   ABOUT*
========================= */
.about-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.about-intro strong {
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.about-card {
  background: linear-gradient(180deg, #1a1a2e, #12121c);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-card h3 {
  margin-bottom: 12px;
}





/* =========================
   SERVICES
========================= */
.services-header {
  text-align: center;      /* center everything inside */
  display: flex;
  flex-direction: column;  /* stack elements vertically */
  align-items: center;     /* center horizontally */
  justify-content: center; /* optional, for vertical centering if needed */
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.services-tagline {
  background: linear-gradient(135deg, #6a5cff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
  margin: 0 0 16px;
}

.services-intro {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto; /* keeps paragraph centered under the header */
  color: #c0c0d0;
  line-height: 1.7;
}


/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* CARDS */
.service-card {
  background: linear-gradient(180deg, #1a1a2e, #12121c);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all 0.35s ease;
  cursor: default;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: #ffffff;
}

.service-card p {
  color: #c0c0d0;
  line-height: 1.65;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(106,92,255,0.3);
}

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 60px;
}

.services-cta .btn-primary {
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 10px 40px rgba(106,92,255,0.35);
  transition: all 0.35s ease;
}

.services-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(106,92,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2rem;
  }

  .services-intro {
    font-size: 1rem;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    padding: 28px 20px;
  }
}


/* =========================
   NETWORK SECTION
========================= */
.network {
  margin-top: 80px;
  padding: 60px 20px;
  background: linear-gradient(180deg, #12121c, #1a1a2e);
}

.network-header {
  text-align: center;
  margin-bottom: 40px;
}

.network-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.network-intro {
  font-size: 1.1rem;
  color: #c0c0d0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats */
.network-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.network-stats .stat {
  text-align: center;
}

.network-stats .number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6a5cff; /* accent gradient color */
  display: block;
}

.network-stats .label {
  font-size: 1.05rem;
  color: #c0c0d0;
  margin-top: 4px;
  display: block;
}

/* Logo Wave */
.logo-wave {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.network-logo {
  height: 120px;
  /*filter: grayscale(100%); */ /* Optional: make logos grayscale */
  opacity: 0.8;
  transition: all 0.35s ease;
}

.network-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
}

/* Niches */
.network-niches {
  text-align: center;
  margin-bottom: 40px;
  color: #c0c0d0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.network-niches span {
  padding: 6px 12px;
  background: rgba(106,92,255,0.1);
  border-radius: 12px;
}

/* CTA */
.network-cta {
  text-align: center;
  margin-top: 20px;
}

.network-cta .btn-primary {
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 10px 40px rgba(106,92,255,0.35);
  transition: all 0.35s ease;
}

.network-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(106,92,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .network-header h2 {
    font-size: 2rem;
  }

  .network-intro {
    font-size: 1rem;
  }

  .network-stats {
    gap: 40px;
  }

  .network-logo {
    height: 50px;
  }

  .network-niches span {
    padding: 4px 10px;
  }
}


/* =========================
   HOW IT WORKS / PROCESS
========================= */
.process {
  margin-top: 80px;
  padding: 60px 20px;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.process-intro {
  font-size: 1.1rem;
  color: #c0c0d0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* PROCESS CARDS */
.process-card {
  background: linear-gradient(180deg, #1a1a2e, #12121c);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all 0.35s ease;
  cursor: default;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: #ffffff;
}

.process-card p {
  color: #c0c0d0;
  line-height: 1.65;
}

/* Hover Effect */
.process-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(106,92,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 2rem;
  }

  .process-intro {
    font-size: 1rem;
  }

  .process-grid {
    gap: 24px;
  }

  .process-card {
    padding: 28px 20px;
  }
}


/* =========================
   CONTACT
========================= */
.contact {
  background: linear-gradient(180deg, #0f0f1a, #0b0b12);
}

.contact-form {
  margin-top: 48px;
  max-width: 520px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background-color: #141420;
  color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6a5cff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  section {
    padding: 90px 0;
  }

  h2 {
    font-size: 2rem;
  }
}

/* =========================
   HEADER (GLASSMORPHISM)
========================= */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(20, 20, 32, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

/* LOGO */
.logo a {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo span {
  background: linear-gradient(135deg, #6a5cff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #d1d1e0;
  transition: color 0.3s ease;
}

/* underline hover */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #6a5cff, #a855f7);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

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

/* CTA LINK */
.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(106, 92, 255, 0.15);
  border: 1px solid rgba(106, 92, 255, 0.35);
}

.nav-cta::after {
  display: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .main-nav {
    gap: 18px;
  }

  .site-header {
    top: 12px;
  }
}

.logo img {
  height: 60px;
  display: block;
  width: auto;
}

/* =========================
   MINIMAL FOOTER
========================= */
.footer {
  background: #0f0f1a;  /* dark background */
  padding: 15px 20px;   /* small height */
}

.footer-bottom {
  width: 100%;
  
}

.footer-bottom p {
  margin: 0;
  color: #7a7a9c;       /* subtle text color */
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}



