
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


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;
}

.portfolio-page-link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}


/* 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: 40px;
  padding: 40px;
  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: 300px;
  border-radius: 20px;
  object-fit: cover;
  border-radius: 16px;
  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: left;
  gap: 16px;
}

.portfolio-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.portfolio-button {
  align-self: center;
  margin-bottom: 100px;
  padding: 10px 18px;
  border-radius: 6px;
  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;
  }
}

/* ============================
   PORTFOLIO BOX (SHARED)
============================ */

.portfolio-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(45,212,255,0.25),
    0 0 70px rgba(139,92,246,0.35);
}

/* ===============================
   PORTFOLIO PAGE – IMAGE FIX
=============================== */

/* Make card structure intentional */
.portfolio-card {
  display: grid;
  grid-template-rows: 1fr auto; /* image gets most space */
  height: 100%;
}

/* PORTFOLIO IMAGE FIX — CLEAN + RESPONSIVE */

/* ===============================
   PORTFOLIO IMAGE — CLEAN FIT
================================ */

.portfolio-card .portfolio-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3; /* good for website screenshots */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
}

/* ✅ Center Portfolio Page Header */
.portfolio-hero {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

/* ✅ Centered Portfolio Grid */
/* ✅ PORTFOLIO GRID — 2 x 3 DESKTOP */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 2 columns */
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* ✅ stack on mobile */
  }
}


.grid-card {
  position: relative;
}

/* Overlay */
.grid-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,15,30,0.3),
    rgba(10,15,30,0.9)
  );
  color: white;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-card:hover .overlay {
  opacity: 1;
}




.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 24px;
  
background: linear-gradient(
    rgba(10,15,30,0.4),
    rgba(10,15,30,0.9)
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}


.overlay ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}


.pricing-timeline {
  padding: 4rem 2rem;
  text-align: center;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #4caf50, #ffc107, #ff5722);
  z-index: 0;
}

.point {
  background: #111;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  z-index: 1;
  width: 120px;
}

.point span {
  display: block;
  font-size: 0.9rem;
}

.point strong {
  font-size: 1.5rem;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,15,30,0.3),
    rgba(10,15,30,0.9)
  );
  color: white;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .overlay {
  opacity: 1;
}


/* PRICING */
.pricing-section {
  text-align: center;
  padding: 5rem 2rem;
}
.pricing-timeline {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;              /* ✅ FULL WIDTH */
  max-width: none;
  margin: 100px 0;
  padding: 0 80px;
}

/* 🔹 LINE */
.pricing-timeline::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;

  background: linear-gradient(
    to right,
    #4caf50,
    #ffc107,
    #ff5722,
    #ff0000
  );

  transform: translateY(-50%);
  border-radius: 6px;
  z-index: 0;
}

/* 🔥 ARROW (RIGHT SIDE = MORE EXPENSIVE) */
.pricing-timeline::after {
  content: "";
  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  border-left: 20px solid #ff0000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* 🔹 CIRCLE STEPS */
.price-step {
  position: relative;

  width: 140px;
  height: 140px;

  border-radius: 50%;
  background: #0d1326;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 1;

  box-shadow: 0 0 30px rgba(0,0,0,0.6);

  box-shadow:
    0 0 25px rgba(45, 212, 255, 0.25),
    0 0 70px rgba(139, 92, 246, 0.35),
    inset 0 0 20px rgba(255,255,255,0.05);

  transition: 0.3s ease;
}

.price-step:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 40px rgba(45, 212, 255, 0.5),
    0 0 100px rgba(139, 92, 246, 0.65);
}


/* Makes spacing feel more dynamic */
.price-step:nth-child(1) { margin-left: 0; }
.price-step:nth-child(2) { margin-left: 40px; }
.price-step:nth-child(3) { margin-left: 40px; }
.price-step:nth-child(4) { margin-left: 40px; }

/* =========================
   PRICING TIMELINE – MOBILE
   ========================= */
@media (max-width: 900px) {

  .pricing-timeline {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 40px 0;
  }

  /* Vertical line */
  .pricing-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: linear-gradient(
      to bottom,
      #4caf50,
      #ffc107,
      #ff5722,
      #ff0000
    );
    transform: translateX(-50%);
    border-radius: 6px;
  }

  /* Remove arrow on mobile */
  .pricing-timeline::after {
    display: none;
  }

  /* Reset desktop spacing */
  .price-step {
    margin: 0 !important;
    width: 120px;
    height: 120px;
    z-index: 1;
  }

  /* Correct vertical order (top = cheapest) */
  .price-step.low { order: 1; }
  .price-step.mid { order: 2; }
  .price-step.high { order: 3; }
  .price-step.max { order: 4; }
}

@media (max-width: 768px) {
  .nav a {
    margin-left: 16px;
    font-size: 16px;
    padding: 8px 4px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .logo img {
    height: 56px;
  }
}

@media (max-width: 768px) {
  .portfolio-image img {
    height: 220px;
  }

  .portfolio-card {
    padding: 24px;
  }
}

button,
.cta-button,
.pricing-button,
.portfolio-button {
  min-height: 44px;
}