body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(ellipse at top left, #f2f4f8, #dbe5ef);
  color: #111;
  -webkit--filter: blur(4px);
  overflow-x: hidden;
  transition: background 1s ease;
  font-size: 16px;
}

#particle-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.button-panel .active {
  transform: scale(1.05);
  background: rgba(0, 140, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 140, 255, 0.7);
}
.project-meta .badge {
  background: #f0f4ff;
  color: #0057cc;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 500;
}

.project-details {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  background: #ffffffdd;
  -webkit--filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  color: #222;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: all 0.5s ease-in-out;
}

.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.project-details h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}
.main-content {
  padding: 20px;
  text-align: center;
  -webkit--filter: blur(10px);
  transition: all 0.5s ease;
}

.hero {
  text-align: center;
  padding-top: 20px;
  transition: opacity 0.5s ease-in-out;
  font-size: 20px;
}

.profile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 140, 255, 0.4);
  transition: transform 0.3s ease;
}

.button-panel {
  margin-top: 20px;
}

.button-panel button {
  margin: 10px;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  color: #111;
  background: rgba(255, 255, 255, 0.3);
  -webkit--filter: blur(12px);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 140, 255, 0.25);
}

.button-panel button:hover {
  background: rgba(0, 140, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 140, 255, 0.5);
}

.section-panel {
  margin: 40px auto;
  padding: 30px;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.3);
  -webkit--filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.1);
  text-align: center;
  transition: transform 0.4s ease;
  font-size: 18px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #008cff;
  text-shadow: 0 0 6px rgba(0, 140, 255, 0.3);
}

.project-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-icon {
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}

.project-icon img {
  width: 160px; /* was 80px */
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.4);
  transition: transform 0.2s ease;
}

.project-icon img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(0, 140, 255, 0.6);
}

.project-icon div {
  margin-top: 8px;
  font-size: 1rem;
  color: #008cff;
}

.project-details .project-thumb {
  max-width: 100%;
  max-height: 200px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
.project-details img {
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 140, 255, 0.15);
}
.project-details .tags {
  margin-top: 12px;
}
.project-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: #e6f0ff;
  color: #007bff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 3px;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #444;
  background: transparent;
  font-size: 14px;
  margin-top: 60px;
  user-select: none;
  -webkit--filter: blur(10px);
}

.name {
  margin-top: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #008cff;
  text-shadow: 0 0 10px rgba(0, 140, 255, 0.5);
}

.video-wrapper {
  margin-top: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.career-buttons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.career-buttons button {
  padding: 12px 24px;
  border: 1px solid #008cff;
  background: rgba(255, 255, 255, 0.4);
  -webkit--filter: blur(10px);
  color: #000;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-buttons button:hover,
.career-buttons .active-career {
  background: rgba(0, 140, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.4);
  color: #008cff;
}

.career-content {
  margin-top: 20px;
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
  font-size: 16px;
}

.social-links a {
  font-size: 16px;
  text-decoration: none;
  color: #008cff;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  -webkit--filter: blur(10px);
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a i {
  font-size: 18px;
}

.social-links a:hover {
  background: rgba(0, 140, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.5);
  color: #005f99;
}
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.career-entry {
  padding: 24px 32px;
  border-left: 4px solid #008cff;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.1);
}

.career-entry h3 {
  font-size: 24px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}

.career-entry .career-date {
  display: block;
  font-size: 14px;
  color: #008cff;
  margin-bottom: 12px;
}

.career-entry p {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}
.skill-row {
  max-width: 700px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.skill-name {
  margin-bottom: 6px;
  color: #222;
  font-weight: 600;
  font-size: 14px;
  text-shadow: none;
  padding-left: 4px;
}

.skill-bar-container {
  background: #e6ecf2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  height: 26px;
}

.skill-bar-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, #4da9ff, #0077cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: width 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 204, 0.2);
}
.note-section {
  border: 2px solid #ffd700;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 1rem;
  background-color: #fff8b3;
  color: #222;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.project-social-icons {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;
  margin-top: 24px;
}

.project-social-icons a {
  font-size: 2.2rem; /* slightly larger icon */
  color: #6e1ac9; /* optional: your desired purple */
  background: #f3f3f3;
  border-radius: 50%;
  padding: 12px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-social-icons a:hover {
  background: #ffeb3b;
  transform: scale(1.1);
}
