/* Reset default margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set base font and futuristic dark background */
body {
  font-family: 'Baloo 2', cursive; /* Fun and readable font */
  background: linear-gradient(to bottom, #000000, #0f172a); /* Black to dark blue gradient */
  color: #e0f7ff; /* Light neon blue text for contrast */
}

/* Sticky header stays at the top on scroll */
header {
  position: sticky;
  top: 0;
  background-color: #010c1c; /* Dark navy-blue background */
  padding: 20px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 255, 255, 0.1); /* Neon glow shadow */
}

/* Navigation bar layout */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Portfolio title in navbar */
nav h1 {
  color: #00ffff; /* Neon blue */
  font-size: 28px;
}

/* Navigation links list */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Styling for navigation links */
nav ul li a {
  text-decoration: none;
  color: #ffffff; /* Neon blue */
  font-weight: bold;
  transition: color 0.3s;
}

/* Hover effect for links */
nav ul li a:hover {
  color: #66fcf1;
}

/* Sections with padding and center text */
.section {
  padding: 100px 20px 60px;
  text-align: center;
}

/* Offset space for anchor navigation */
.offset::before {
  content: '';
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

/* Images with drop shadow and round edges */
.section-img {
  max-width: 200px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); /* Glowing effect */
  margin: 20px auto;
  display: block;
}

/* Project category title */
.project-title {
  margin-top: 40px;
  font-size: 26px;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

/* Container for project cards */
.project-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Individual project cards */
.project-card {
  background-color: #111827; /* Card background */
  padding: 20px;
  border-radius: 15px;
  max-width: 300px; /* Allows flexibility for image */
  color: #e0f7ff;
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.1); /* Glow effect */
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column; /* Arrange content vertically */
  align-items: center;     /* Center the content horizontally */
}


/* Hover effect for project cards */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.4);
}

/* Resume button styling */
.resume-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 20px;
}

/* Hover effect for resume button */
.resume-button:hover {
  background-color: #66fcf1;
}

/* Footer style */
footer {
  text-align: center;
  padding: 20px;
  background-color: #0f172a;
  font-size: 14px;
  color: #00ffff;
}
