:root {
    --hero1: #4c6ef5;
    --hero2: #7048e8;
    --hero3: #5f3dc4;
    --text-light: #ffffff;
    --text-hover: #e0e0ff;
  }
  html, body {
    height: 100%;
    margin: 0;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
  }
  
  .content {
    flex: 1;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
  }
  header {
    background-color: #1e1e25; /* Charcoal base */
    color: #ffffff;
    padding: 24px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Independent purple circles */
  header::before,
  header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #a066ff, rgb(112, 72, 232));
  opacity: 0.2;
  pointer-events: none;
    z-index: 10;
}

/* First small circle - top left */
header::before {
  width: 120px;
  height: 120px;
  top: 20px;
  left: 40px;
}

/* Second small circle - mid right */
header::after {
  width: 100px;
  height: 100px;
  top: 60px;
  right: 80px;
}

/* Add more with pseudo-elements or span tags if needed */
header .circle-1,
header .circle-2 {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #a066ff, #7048e8);
  opacity: 0.15;
  pointer-events: none;
  z-index: 10;
}

header .circle-1 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 120px;
}

header .circle-2 {
  width: 60px;
  height: 60px;
  top: 100px;
  right: 160px;
}

  
  
  .header-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
  }
  
  .deskheader {
    display: flex;
    gap: 24px;
  }
  
  .deskheader a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .deskheader a:hover {
    color: var(--text-hover);
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Responsive nav */
  @media (max-width: 768px) {
    .deskheader {
      display: none;
      flex-direction: column;
      background: rgba(112, 72, 232, 0.5);
      padding: 1rem;
      border-radius: 6px;
      backdrop-filter: blur(6px);
      position: fixed;
      top: 72px;
      right: 2rem;
      z-index: 999;
    }
  
    .deskheader.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
    .footer p{
      font-size: 2.3vw;
    }
  }
  
  .footer {
    background-color: #1e1e25;
    color: #ffffff;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Circular background accents */
  .footer::before,
  .footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #a066ff, #7048e8);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Smaller circles in new locations */
  .footer::before {
    width: 100px;
    height: 100px;
    bottom: 60px;
    left: 40px;
    animation: float 8s ease-in-out infinite;
  }
  
  .footer::after {
    width: 80px;
    height: 80px;
    top: 30px;
    right: 60px;
    animation: float 10s ease-in-out infinite;
  }
  
  .footer p {
    margin: 8px 0;
    position: relative;
    z-index: 1;
  }
  
  .footer .underfoot {
    color: #cfcfff;
    font-style: italic;
  }
  @keyframes float {
    0%   { transform: translateY(0px) scale(1); }
    50%  { transform: translateY(-6px) scale(1.03); }
    100% { transform: translateY(0px) scale(1); }
  }