* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #eee;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0,0,0,0.7);
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.logo {
  font-weight: bold;
  font-size: 1.8rem;
  color: #00f0ff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #ccc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00f0ff;
}

section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

#hero {
  padding-top: 120px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00f0ff;
}

p {
  font-size: 1rem;
  color: #ccc;
}

.btn {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #00f0ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff00f7;
  color: #fff;
}

.glass {
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.skills-grid span {
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s;
}

.skills-grid span:hover {
  background: #00f0ff;
  color: #000;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
}

.role {
  color: #aaa;
  font-style: italic;
  margin-bottom: 10px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.project-card {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,240,255,0.2);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-links a {
  background: #00f0ff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-links a:hover {
  background: #ff00f7;
  color: #fff;
}

footer {
  background: rgba(0,0,0,0.7);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.experience-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.experience-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 240, 255, 0.2);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
}

.experience-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-icon {
  font-size: 1.5rem;
  color: #00f0ff;
}

.role {
  font-style: italic;
  color: #aaa;
  margin: 5px 0;
}

.date {
  font-weight: normal;
  color: #888;
}

.description {
  margin-top: 10px;
  color: #ccc;
}

.tech-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  background: #1a1a1a;
  color: #00f0ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: background 0.3s;
}

.tech-tags span:hover {
  background: #00f0ff;
  color: #000;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #00f0ff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-container.left {
  left: 0;
}

.timeline-container.right {
  left: 50%;
}

.experience-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,240,255,0.2);
  transition: 0.3s;
}

.experience-card:hover {
  transform: translateY(-10px);
}

.timeline-container.left .experience-card {
  margin-left: auto;
}

.timeline-container.right .experience-card {
  margin-right: auto;
}

.role {
  font-style: italic;
  color: #aaa;
  margin: 5px 0;
}

.date {
  font-weight: normal;
  color: #888;
}

.description {
  margin-top: 10px;
  color: #ccc;
}

.tech-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  background: #1a1a1a;
  color: #00f0ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: background 0.3s;
}

.tech-tags span:hover {
  background: #00f0ff;
  color: #000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container.right {
    left: 0%;
  }
}
.timeline-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.timeline-container.show {
  opacity: 1;
  transform: translateY(0);
}
.experience-bullets {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  text-align: left;
}

.experience-bullets li {
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.95rem;
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.skill-category {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
}

.skill-category h3 {
  color: #00f0ff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-list span {
  background: #1a1a1a;
  color: #00f0ff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.3s;
}

.skills-list span:hover {
  background: #00f0ff;
  color: #000;
}

/* Animation */
.skill-category {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.skill-category.show {
  opacity: 1;
  transform: translateY(0);
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.skill-category {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
  transition: 0.3s;
}

.skill-category h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Programming Color (Blue Glow) */
.programming h3, .programming .skills-list span {
  color: #00f0ff;
}
.programming .skills-list span:hover {
  background: #00f0ff;
  color: #000;
}

/* Frontend Color (Neon Purple) */
.frontend h3, .frontend .skills-list span {
  color: #c770f0;
}
.frontend .skills-list span:hover {
  background: #c770f0;
  color: #000;
}

/* Cloud Color (Sky Blue) */
.cloud h3, .cloud .skills-list span {
  color: #00d9ff;
}
.cloud .skills-list span:hover {
  background: #00d9ff;
  color: #000;
}

/* Backend Color (Cyber Green) */
.backend h3, .backend .skills-list span {
  color: #00ffb0;
}
.backend .skills-list span:hover {
  background: #00ffb0;
  color: #000;
}

/* Security Color (Red) */
.security h3, .security .skills-list span {
  color: #ff6161;
}
.security .skills-list span:hover {
  background: #ff6161;
  color: #000;
}

/* Analytics Color (Golden Yellow) */
.analytics h3, .analytics .skills-list span {
  color: #f7ff00;
}
.analytics .skills-list span:hover {
  background: #f7ff00;
  color: #000;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.skills-list span {
  background: #1a1a1a;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Scroll Animation */
.skill-category {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.skill-category.show {
  opacity: 1;
  transform: translateY(0);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,240,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.project-card:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(4deg);
  box-shadow: 0 10px 30px rgba(0,240,255,0.4);
}

.project-card h3 {
  margin: 10px 0;
  color: #00f0ff;
}

.project-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.project-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #00f0ff;
  color: #000;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}

.project-card a:hover {
  background: #ff00f7;
  color: #fff;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-link {
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  border-radius: 30px;
  color: #00f0ff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-link img {
  width: 24px;
}

.contact-link:hover {
  background: #00f0ff;
  color: #000;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.tech-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  color: #00f0ff;
  transition: 0.3s;
  display: inline-block;
}

/* Now individual colors */

.power-apps {
  background: #742774;
  color: white;
}
.sql-server {
  background: #CC2927;
  color: white;
}
.power-bi {
  background: #F2C811;
  color: black;
}
.etl {
  background: #00d9ff;
  color: black;
}
.flutter {
  background: #02569B;
  color: white;
}
.python {
  background: #4B8BBE;
  color: white;
}
.dart {
  background: #00B4AB;
  color: black;
}

/* HERO SECTION */

.hero-glass {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0f0f0f, #111122);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-animation: alternate;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  animation: fadeIn 2s ease forwards;
}

.hero-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  animation: slideInDown 1s ease-out forwards;
}

.highlight {
  color: #00f0ff;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 30px;
  animation: slideInUp 1s ease-out forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 30px;
  background: #00f0ff;
  color: #000;
  transition: 0.3s;
  border: 2px solid #00f0ff;
}

.hero-btn.secondary {
  background: transparent;
  color: #00f0ff;
  border: 2px solid #00f0ff;
}

.hero-btn:hover {
  background: #ff00f7;
  color: #000;
  border-color: #ff00f7;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resume-line {
  margin-top: 20px;
  font-size: 1rem;
  color: #aaa;
}

.resume-link {
  color: #00f0ff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #00f0ff;
  transition: 0.3s;
}

.resume-link:hover {
  color: #ff00f7;
  border-color: #ff00f7;
}
.resume-link::after {
  content: ' (PDF)';
  font-size: 0.8rem;
  color: #ccc;
}
.resume-link::before {
  content: 'Resume: ';
  font-size: 1rem;
  color: #00f0ff;
  font-weight: bold;
}

.resume-box {
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  border: 1px solid #00f0ff;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

.resume-box:hover {
  box-shadow: 0 0 25px rgba(255, 0, 247, 0.4);
  border-color: #ff00f7;
}

.resume-box p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 10px;
}

.resume-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.resume-button:hover {
  background: linear-gradient(90deg, #ff00f7, #00f0ff);
  color: #000;
}
.resume-button::after {
  content: ' (PDF)';
  font-size: 0.8rem;
  color: #ccc;
} 

.resume-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #00f0ff;
  margin-bottom: 20px;
}

.resume-box {
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid #00f0ff;
  border-radius: 15px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

.resume-box:hover {
  box-shadow: 0 0 25px rgba(255, 0, 247, 0.4);
  border-color: #ff00f7;
}

.resume-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

.resume-button:hover {
  background: linear-gradient(90deg, #ff00f7, #00f0ff);
  color: #000;
}

html {
  scroll-behavior: smooth;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(0,255,255,0.2);
  color: #00f0ff;
  font-weight: bold;
  text-align: center;
  min-width: 250px;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.edu-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5em;
  margin-bottom: 2em;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.edu-card:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.edu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.edu-school {
  font-size: 1.3em;
  font-weight: bold;
  color: #00f0ff;
  margin: 0;
}

.edu-date {
  font-size: 0.95em;
  color: #aaa;
  font-style: italic;
}

.edu-degree {
  font-style: italic;
  color: #ccc;
  margin: 0.4em 0 0.6em;
}

.edu-details {
  color: #eee;
  line-height: 1.5;
  margin: 0;
}

