body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}
header {
    background: #000;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav a {
    color: white;
    margin: 0px 15px;
    text-decoration: none;
}
.hero {
  background: url('/assets/Main_Image.PNG') center/contain no-repeat;
  min-height: 80vh; /* whatever you need */
}
.hero2 {
    text-align: center;
    padding: 2px 20px;
}
.hero .cta {
    display: inline-block;
    margin-top: 10px;
    padding: 2px 30px;
    background: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
section {
    padding: 20px 20px 20px 50px;
    text-align: center;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}
.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.logos img {
    height: 60px;
}
footer {
    background: #111;
    color: #888;
    padding: 30px;
    text-align: center;
}

/* Active nav state */
nav a.active { color: #ffcc00; font-weight: bold; text-decoration: underline; }

/* Breadcrumbs */
.breadcrumbs { font-size: .9rem; color: #bbb; margin: 16px auto 8px; max-width: 1100px; text-align: left; }
.breadcrumbs a { color: #ccc; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 10px; max-width: 520px; margin: 0 auto; }
.contact-form input, .contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #0f0f0f;
  color: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 12px 16px; border: none; border-radius: 6px;
  background: #ffcc00; color: #000; font-weight: 700; cursor: pointer;
}
.contact-form button:hover { filter: brightness(1.05); }

#starfield{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  display: block;
}
.icon-logo {
    max-width: 100px;
    height: auto;
    display: inline-block;
    margin-left: 0;
    text-align: flex-start;
}
.main-logo {
    max-width: 600px;
    height: auto;
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 12px;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: left;
  padding: 18px 20px;
  backdrop-filter: blur(2px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.project-head h3 { margin: 0 0 6px 0; font-size: 1.05rem; }
.project-meta { margin: 0 0 8px 0; color: #aaa; font-size: .9rem; }
.project-card ul { margin: 0; padding-left: 18px; line-height: 1.5; }
.project-card li { margin: 6px 0; }

/* Aurora Effect (for hero tagline) */
:root {
  --bg: #000;
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;
  --blur: 1.25rem;
}

.aurora-line {
  position: relative;
  display: inline-block;
  margin: 10px auto 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--bg);
  overflow: hidden;
  max-width: 980px;
}

.aurora-copy {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.35;
  font-size: 1.1rem;
}

.aurora {
  position: absolute;
  inset: -40%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen; /* fixed for dark background */
}

.aurora__item {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: screen; /* fixed for dark background */
  opacity: 0.9;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
             aurora-1 12s ease-in-out infinite alternate;
}
.aurora__item:nth-of-type(2) {
  background: var(--clr-3);
  right: 0; top: 0;
  animation: aurora-border 6s ease-in-out infinite,
             aurora-2 12s ease-in-out infinite alternate;
}
.aurora__item:nth-of-type(3) {
  background: var(--clr-2);
  left: 0; bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
             aurora-3 8s ease-in-out infinite alternate;
}
.aurora__item:nth-of-type(4) {
  background: var(--clr-4);
  right: 0; bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
             aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% { top: 0; right: 0; }
  50% { top: 100%; right: 75%; }
  75% { top: 100%; right: 25%; }
  100% { top: 0; right: 0; }
}
@keyframes aurora-2 {
  0% { top: -50%; left: 0%; }
  60% { top: 100%; left: 75%; }
  85% { top: 100%; left: 25%; }
  100% { top: -50%; left: 0%; }
}
@keyframes aurora-3 {
  0% { bottom: 0; left: 0; }
  40% { bottom: 100%; left: 75%; }
  65% { bottom: 40%; left: 50%; }
  100% { bottom: 0; left: 0; }
}
@keyframes aurora-4 {
  0% { bottom: -50%; right: 0; }
  50% { bottom: 0%; right: 40%; }
  90% { bottom: 50%; right: 25%; }
  100% { bottom: -50%; right: 0; }
}
@keyframes aurora-border {
  0% { border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%; }
  25% { border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%; }
  50% { border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%; }
  75% { border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%; }
  100% { border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%; }
}

@media (max-width: 640px) {
  .aurora__item {
    width: 120vw;
    height: 120vw;
  }
}

/* Aurora Text Effect */
.aurora-text {
  font-weight: bold;
  font-size: 1.8rem; /* adjust as needed */
  background: linear-gradient(
    270deg,
    #00c2ff,
    white,       /* added white here */
    #33ff8c,
    #ffc640,
    #e54cff,
    white,       /* added another white stop for smoother loop */
    #00c2ff
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: auroraGradient 10s ease infinite;
}

@keyframes auroraGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
