/* 🌍 Body */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff1f1;
  background: radial-gradient(circle at top left, #0f2027, #203a43, #2c5364);
  overflow-x: hidden;
}

✨ Animated Gradient Headings */
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(27deg, #00adb5, #ff6b6b, #00ffcc);
  background-size: 60% 60%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift s ease infinite;
  text-shadow: 0px 0px 2px rgba(0, 173, 181, 0.8);
   /* cut down top blank space */
}

 @keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🧭 Navbar */
nav.navbar {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 42, 42, 0.1);
  box-shadow: 0px 4px 15px rgba(24, 23, 23, 0.6);
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #f4eded !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #00ffcc !important;
  text-shadow: 0px 0px 10px #00ffcc;
}

/* 💎 Skills Section */

#skills {
  text-align: center; /* heading aur content center hoga */
  padding: 40px 20px;
}
.skills-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* keep horizontal but wrap if needed */
  gap: 25px;
  margin-top: 30px;
}

/* 💎 Skill Cards (Glassmorphism) */
.skill-card {
 background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  width: 150px;   /* fixed width for alignment */
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}
.skills-section h2 {
  margin-bottom: 10px;  /* pehle yeh jyada hoga, use kam karo */
}

.skill-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00adb5;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.08);
  background: linear-gradient(135deg, rgba(0,173,181,0.3), rgba(255,107,107,0.3));
  box-shadow: 0px 12px 30px rgba(0, 255, 204, 0.6);
}
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* last row center aligned */
  gap: 20px;
  margin-top: 0x;
}

/* 📩 Buttons */
.btn-primary {
  background: linear-gradient(90deg, #00adb5, #ff6b6b);
  border: none;
  color: #fffefe;
  font-weight: bold;
  border-radius: 25px;
  padding: 10px 22px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff6b6b, #00adb5);
  transform: scale(1.08);
  box-shadow: 0px 6px 20px rgba(0, 173, 181, 0.6);
}

/* 🔗 Links (Resume, GitHub, LinkedIn) */
.icon-link {
  color: #837b7b;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.icon-link i {
  margin-right: 8px;
  font-size: 22px;
}

.icon-link:hover {
  transform: translateY(-4px) scale(1.1);
  text-shadow: 0px 0px 15px rgba(0,255,204,0.8);
}

/* ✨ Fade-in Effect for Sections */
section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* piche */
}
#about {
 position: relative;
  height: 80vh; /* full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.about-content {
  position: relative;
  z-index: 2; /* upar */
}
#about h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #efdede;
}

#about .links-container {
  margin: 20px 0;
}

#about .icon-link {
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #a09494;
  transition: all 0.3s ease;
}

#about .icon-link:hover {
  color: #007bff; /* hover effect */
  transform: scale(1.1);
}

#about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cebbbb;
}

