:root{
      --pg-bg: #2C253E;
      --pg-bg-2: #181727;
      --pg-lav: #8C6CC5;
      --pg-lav-2:#9374CA;
      --pg-teal:#539A99;
      --pg-white:#F5F3F7;
    }

    html { scroll-behavior: smooth; }
    body{
      font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--pg-white);
      background: var(--pg-bg-2);
    }
    h1,h2,h3,h4{
      font-family: Montserrat, system-ui, sans-serif;
      letter-spacing: .5px;
    }

    /* Navbar */
    .navbar{
      transition: background .25s ease, box-shadow .25s ease;
    }
    .navbar.scrolled{
      background: rgba(24, 23, 39, .92) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }
    .nav-link{
      color: rgba(245,243,247,.85) !important;
    }
    .nav-link:hover{
      color: var(--pg-white) !important;
    }
    .btn-outline-teal{
      border: 1px solid var(--pg-teal);
      color: var(--pg-white);
    }
    .btn-outline-teal:hover{
      background: var(--pg-teal);
      color: #0f1416;
      border-color: var(--pg-teal);
    }

    /* Parallax helpers */
    .parallax{
      position: relative;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }
    @media (max-width: 991px){
      /* mobile browsers often disable fixed backgrounds; this keeps it smooth */
      .parallax{ background-attachment: scroll; }
    }
    .overlay{
      position:absolute; inset:0;
      background: linear-gradient(135deg, rgba(44,37,62,.88), rgba(140,108,197,.35));
    }
    .section-pad{ padding: 90px 0; }

    /* Cards */
    .pg-card{
      background: rgba(245,243,247,.06);
      border: 1px solid rgba(245,243,247,.10);
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(0,0,0,.18);
    }
    .pg-card.light{
      background: rgba(24,23,39,.04);
      border-color: rgba(24,23,39,.10);
      color: #1b1630;
    }
    .icon-badge{
      width: 44px; height: 44px;
      display:flex; align-items:center; justify-content:center;
      border-radius: 12px;
      background: rgba(83,154,153,.18);
      border: 1px solid rgba(83,154,153,.35);
      color: var(--pg-white);
      font-weight: 700;
    }

    /* Light sections */
    .light-section{
      background: linear-gradient(180deg, #F5F3F7 0%, #EAE3F4 100%);
      color: #1b1630;
    }
    .muted-dark{ color: rgba(27,22,48,.75); }

    /* Portfolio tags */
    .tag{
      display:inline-block;
      font-size: .8rem;
      padding: .25rem .6rem;
      border-radius: 999px;
      border: 1px solid rgba(83,154,153,.45);
      color: var(--pg-white);
      background: rgba(83,154,153,.14);
      margin-right: .4rem;
      margin-bottom: .4rem;
    }

    /* Footer */
    footer{
      background: #141222;
      color: rgba(245,243,247,.8);
    }

    .hero {
  min-height: 100vh;
  background-image:
    linear-gradient(135deg, rgba(44,37,62,.85), rgba(140,108,197,.45)),
    url('../img/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax */
}

.mb-0 p {
  color: rgba(245,243,247,.75);
}
/*li{
  color: rgba(245,243,247,.75);
}*/

.error{

  color: #f00;
}