
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-image: 
    linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.65)
    ),
  url("images/starlinks-background1.png");
  min-height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;

  margin: 0;
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
    url("images/starlinks-background1.png");

  background-size: cover;
  background-position: center;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            ellipse at left,
            rgba(22, 88, 255, 0.35),
            transparent 60%
        ),
        radial-gradient(
            ellipse at right,
            rgba(139, 92, 246, 0.35),
            transparent 60%
        );
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;

  background: transparent;
}

/* Create many tiny stars */

.stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;   /* size of each star */
  height: 32px;
  background-image: url("images/icons/process-icons-star.png");
  background-size: contain;
  background-repeat: no-repeat;
  
  box-shadow:
    100px 200px,
    300px 400px,
    600px 150px,
    900px 300px,
    1200px 500px;

  animation: moveStarsSlow 120s linear infinite;
  opacity: 0.5; /* dimmer = farther away */
  transform: scale(0.7);

}

.stars::after {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;   /* size of each star */
  height: 32px;
  background-image: url("images/icons/process-icons-star.png");
  background-size: contain;
  background-repeat: no-repeat;

  box-shadow:
    100px 200px,
    300px 400px,
    600px 150px,
    900px 300px,
    1200px 500px;

  animation: moveStarsFast 60s linear infinite;
  opacity: 0.9;

}

@keyframes moveStarsSlow {
  from {
    transform: translateY(0) scale(0.7);
  }
  to {
    transform: translateY(-1000px) scale(0.7);
  }
}

@keyframes moveStarsFast {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1500px);
  }
}

#star-canvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;              /* stars */
}

/* Make sure your actual page content sits above the stars */
.site-header, .hero, section, .process {
  position: relative;
  z-index: 1;
}

/* -----------------
   HEADER
------------------*/
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;

  background: linear-gradient(
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4)
  );

  backdrop-filter: blur(3px);
  z-index: 10;

}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(22, 88, 255, 0.6),
    transparent
  );
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo img {
  height: 80px;   /* Adjust size here */
  width: auto;
  display: block;
}


.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

/* -----------------
   HERO / MISSION
------------------*/
.hero {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;

/* Local background image */
  background:
    linear-gradient(
      rgba(5, 10, 25, 0.50)
    ),
}

.hero-content {
  max-width: 900px;
  padding: 40px;
  
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 600;
}

.hero h1 span {
  color: rgba(22, 88, 255);
}

/* -----------------
   CTA BUTTON
------------------*/
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;

  background: linear-gradient(
    135deg,
    rgba(22, 88, 255),
    #8b5cf6
  );

  box-shadow: 0 0 30px rgba(45, 212, 255, 0.35);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}


.section-divider {
    width: 100%;
    height: 6px;
    margin: 40px 0;

    background: linear-gradient(
        to right,
        transparent,
        rgba(22, 88, 255, 0.6),
        rgba(139, 92, 246, 0.6),
        transparent
    );
}
/* -----------------
   PROCESS SECTION
------------------*/
/* Process section header */
.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-header p {
  font-size: 20px;
  opacity: 0.75;
  margin-top: 0px;
}

.process {
  padding: 40x 40px;
  display: flex;
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: 100%;
}

/* Glass card style */
.process-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(108, 242, 255, 0.15);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-30px);
  box-shadow: 0 0 45px rgba(138, 92, 246, 0.507);
}

/* Icon */
.process-icon {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
}

/* Text */
.process-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.process-card p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------
ABOUT US – STACKED + GLOW
------------------ */
.about-section {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 44px;
  font-weight: 600;
}

.about-header p {
  font-size: 20px;
  opacity: 0.75;
}

/* Vertical stack */
.about-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  width: 100%;
}

/* Large glass card */
.about-card.about-large {
  padding: 44px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  position: relative;

  /* GLOW */
  box-shadow:
    0 0 30px rgba(45, 212, 255, 0.25),
    0 0 70px rgba(139, 92, 246, 0.35),
    inset 0 0 25px rgba(255, 255, 255, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card.about-large:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 40px rgba(45, 212, 255, 0.4),
    0 0 90px rgba(139, 92, 246, 0.6),
    inset 0 0 35px rgba(255, 255, 255, 0.08);
}

/* Image */
.about-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  display: block;
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 25px rgba(108, 242, 255, 0.25);
}

/* Text */
.about-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* -----------------
PRICING SECTION
------------------ */
.pricing-section {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 44px;
  font-weight: 600;
}

.pricing-header p {
  font-size: 20px;
  opacity: 0.75;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  width: 100%;
}

/* Pricing Card */
.pricing-card {
  padding: 40px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;

  box-shadow:
    0 0 30px rgba(45, 212, 255, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 45px rgba(45, 212, 255, 0.35),
    0 0 80px rgba(139, 92, 246, 0.45);
}

/* Highlight middle plan */
.pricing-card.featured {
  box-shadow:
    0 0 45px rgba(139, 92, 246, 0.5),
    0 0 90px rgba(45, 212, 255, 0.4);
  transform: translateY(-8px);
}

/* Titles & price */
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: rgba(22, 88, 255);
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  opacity: 0.9;
}

/* Checkmark */
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(45, 212, 255);
  font-weight: 700;
}

/* Button */
.pricing-button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;

  background: linear-gradient(
    135deg,
    rgba(22, 88, 255),
    #8b5cf6
  );

  box-shadow: 0 0 25px rgba(45, 212, 255, 0.35);
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.6);
}

/* Mobile */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------
ADD-ONS SECTION
------------------ */
.addons-section {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.addons-header {
  text-align: center;
  margin-bottom: 60px;
}

.addons-header h2 {
  font-size: 44px;
  font-weight: 600;
}

.addons-header p {
  font-size: 20px;
  opacity: 0.75;
}

/* Grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  width: 100%;
}

/* Add-on card */
.addon-card {
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;

  box-shadow:
    0 0 28px rgba(45, 212, 255, 0.2),
    inset 0 0 18px rgba(255, 255, 255, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(45, 212, 255, 0.35),
    0 0 75px rgba(139, 92, 246, 0.45);
}

/* Text */
.addon-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 900px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* Add-on icon */
.addon-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;

  /* keeps icons clean and centered */
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* subtle depth without glow pollution */
  filter: drop-shadow(0 0 10px rgba(45, 212, 255, 0.25));
}

/* Optional: gentle hover interaction */
.addon-card:hover .addon-icon {
  transform: scale(1.06);
  transition: transform 0.25s ease;
}

/* -----------------
PORTFOLIO SECTION
------------------ */
.portfolio-section {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 70px;
}

.portfolio-header h2 {
  font-size: 44px;
  font-weight: 600;
}

.portfolio-header p {
  font-size: 20px;
  opacity: 0.75;
}

/* Stack */
.portfolio-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

/* Card */
.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 35px rgba(45, 212, 255, 0.25),
    0 0 70px rgba(139, 92, 246, 0.35);
}

/* Reverse middle layout */
.portfolio-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.portfolio-card.reverse .portfolio-image {
  order: 2;
}

.portfolio-card.reverse .portfolio-text {
  order: 1;
}

/* Image */
.portfolio-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 30px rgba(108, 242, 255, 0.3);
}

/* Text */
.portfolio-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.portfolio-text h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.portfolio-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Button */
.portfolio-button {
  align-self: center;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(22, 88, 255),
    #8b5cf6
  );
  box-shadow: 0 0 25px rgba(45, 212, 255, 0.35);
}

.portfolio-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

/* Mobile */
@media (max-width: 900px) {
  .portfolio-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-card.reverse .portfolio-image,
  .portfolio-card.reverse .portfolio-text {
    order: unset;
  }

  .portfolio-button {
    align-self: center;
  }
}

/* -----------------
CONTACT SECTION
------------------ */
.contact-section {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 44px;
  font-weight: 600;
}

.contact-header p {
  font-size: 20px;
  opacity: 0.75;
}

/* Form */
.contact-form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 35px rgba(45, 212, 255, 0.25),
    0 0 80px rgba(139, 92, 246, 0.35);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Button */
.contact-button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(22, 88, 255),
    #8b5cf6
  );
  box-shadow: 0 0 25px rgba(45, 212, 255, 0.35);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.6);
}

/* -----------------
CONTACT ALTERNATE INFO
------------------ */
.contact-alt {
  text-align: center;
}

.contact-or {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.7;
}

.contact-alt p {
  margin: 6px 0;
  font-size: 24px;
}

/* Links */
.contact-link {
  color: rgba(45, 212, 255);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* -----------------
FOOTER
------------------ */
.site-footer {
  margin-top: 120px;
  padding-top: 60px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.9)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

/* Brand */
.footer-brand img {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Columns */
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.8;
  color: #ffffff;
  text-decoration: none;
}

.footer-column a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(45, 212, 255, 0.3);
}

.footer-socials a:hover {
  background: rgba(22, 88, 255, 0.9);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.75;
}

.footer-bottom a {
  color: rgba(45, 212, 255);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}