    body{font-family:Roboto,Arial,sans-serif;background: #0b0f14 url('bg3.jpg') center/cover fixed;color:#e6eef6;margin:0;padding:0}
    .wrap{max-width:1100px;margin:40px auto;padding:24px;background:rgba(7,10,14,0.6);border-radius:8px;box-shadow:0 8px 30px rgba(0,0,0,0.7);
      border:1px solid rgba(255,255,255,0.03);}
    header{margin-bottom:20px;text-align:center}
    header h1{font-family:Oswald,sans-serif;font-size:28px;margin:0 0 6px 0}
    header .sub{font-size:14px;color:#9fb3d1}
    a{color:#9fd3ff;text-decoration:none}
    a:hover{text-decoration:underline}
    ul{list-style:none;padding:0;margin-top:20px}
    li{margin:10px 0;padding:10px;border-radius:6px;background:rgba(255,255,255,0.02);display:flex;align-items:center;gap:10px;transition:background 0.2s}
    li:hover{background:rgba(255,255,255,0.08)}
    .icon{width:20px;height:20px;flex-shrink:0;fill:#9fd3ff}
    .details{font-size:12px;color:#9fb3d1;margin-left:auto}
    .folder{font-weight:bold}
    .back{display:inline-block;margin-bottom:15px;color:#cfe3ff}
    footer{margin-top:30px;padding-top:12px;border-top:1px solid rgba(255,255,255,0.1);font-size:16px;color:#9fb3d1;text-align:center}
.slideshow-container {
  position: relative;      /* keep arrows inside */
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
}

.mySlides {
  display: none;
  position: relative;
}

.mySlides img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  opacity: 0.80;
}
.mySlides img:hover {
  opacity: 1;
}

/* Caption overlay */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 0 0 8px 8px;
}

.caption h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.caption p {
  margin: 4px 0 0 0;
  font-size: 18px;
  line-height: 1.4;
  color: #dce6f0;
}

/* Prev/Next buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 12px; }
.next { right: 12px; }

.prev svg, .next svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
#about {
  padding: 10px 20px;
background:linear-gradient(180deg,rgba(255,255,255,0.05),rgba(0,0,0,0.28));
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center; /* vertical center */
  flex-wrap: wrap;     /* responsive fallback */
}

.about-image-container {
  flex: 0 0 250px; /* fixed width for image */
  text-align: center;
}

.about-image-container img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a1e23;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease; /* smooth transition */
}
.about-image-container img:hover {
  transform: scale(1.8); /* enlarge 50% on hover */
}
.about-text {
  flex: 1;
  text-align: left; /* text aligned left */
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2em;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;  /* underline aligns left */
  width: 50px;
  height: 3px;
  background: #ff471a;
  border-radius: 2px;
}

.skills-container h3 {
  margin-top: 20px;
}

.skills-container ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 5px 0 0 0;
}

.skills-container ul li {
  background-color: #1a1e23;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9em;
}
.folder-icon {
    width: 24px;       /* size of the icon */
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 8px;
}
li.folder {
    display: flex;
    align-items: center;
}
canvas#bgCanvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* behind all content */
  pointer-events: none; /* clicks go through */
  display: block;
}
/* WIPs section grid */
.wips-section {
  padding: 1rem;
}

.wips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* Card container */
.wip-card {
  background: rgba(55,64,73,0.5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Cover image */
.wip-cover {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #1e293b;
}
.wip-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.wip-body {border-top:2px solid #121b24;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Title and meta */
.wip-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  color: #e2e8f0; /* light text */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wip-meta {
  font-size: 0.875rem;
  color: #8392a5; /* muted */
}

/* Progress bar */
.wip-progress-wrap {
  margin-top: 0px;
}
.wip-progress {
  height: 12px;
  background: #1e293b;
  overflow: hidden;
}
.wip-progress .wip-bar {
  height: 100%;
  width: 0%;
  transition: width 900ms cubic-bezier(.2,.9,.2,1);
}
.wip-progress .wip-bar-inner {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg,#507c9f,#9cb6d7); /* blue -> cyan */
}
.wip-pct {
  font-size: 0.85rem;
  color: #f8fafc;
  text-align: right;
}

/* Empty state */
.wips-empty {
  padding: 3rem;
  text-align: center;
  color: #64748b;
}

/* Section with semi-transparent dark background */
.cs-section {
  padding: 2rem 0;
}

/* Centered container */
.cs-container.cs-contact-box {
  backdrop-filter: blur(5px);
  width: 90%;
  margin: 0 auto;
  text-align: center;
  border: 2px solid rgba(117, 182, 238, 0.5); /* neon-blue border */
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 30px rgba(117, 182, 238, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cs-container.cs-contact-box:hover {
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
}

/* Title with neon glow effect */
.cs-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #75b6ee;
  text-shadow: 0 0 8px #3b82f6, 0 0 15px #60a5fa;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif; /* futuristic gaming font */
}

/* Description */
.cs-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-shadow: 0 0 2px #0f172a;
}

/* Links container */
.cs-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.cs-btn {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

/* Primary button */
.cs-btn-primary {
  background-color: transparent;
  color: #75bae5;
  border: 2px solid #75bae5;
}
.cs-btn-primary:hover {
  background-color: #60a5fa;  color: #fff;
  box-shadow: 0 0 15px #3b82f6, 0 0 25px #60a5fa;  text-decoration: none;
}

/* Secondary button */
.cs-btn-secondary {
  background-color: transparent;
  color: #c8d6e0;
  border: 2px solid #75bae5;
}
.cs-btn-secondary:hover {
  background-color: rgba(59, 130, 246, 0.15);color: #fff;
  box-shadow: 0 0 12px #3b82f6, 0 0 18px #60a5fa;  text-decoration: none;
}

/* Gallery container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 15px;
    margin-top: 20px;
}

/* Each gallery item */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox overlay */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox-overlay img.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

#lightbox-overlay .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

#lightbox-overlay .lightbox-nav span {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    padding: 10px;
}

#lightbox-overlay .lightbox-prev {
    left: 20px;
}

#lightbox-overlay .lightbox-next {
    right: 20px;
}
/* Mobile adjustments */
@media (max-width: 600px) {
.mySlides img {
  height: auto;
}
.caption {background:transparent}
  .caption h2 { font-size: 16px; }
  .caption p { font-size: 12px; }
  .prev, .next { padding: 8px; }
  .prev svg, .next svg { width: 20px; height: 20px; }
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .wip-title {
    font-size: 0.95rem;
  }
  .cs-title {
    font-size: 1.9rem;
  }
  .cs-btn {
    width: 100%;
    text-align: center;
  }
    .gallery {
        grid-gap: 10px;
    }
}
