body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8cdda, #c2a1ff);
  scroll-behavior: smooth;
}



/* ---------------- NAVBAR ---------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  color: white;
}

.resume-btn {
  background: linear-gradient(45deg, #d63384, #6a0572);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.resume-btn:hover {
  transform: translateY(-3px);
}

/* ---------------- HERO ---------------- */

.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.25);
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  text-align: center;
  width: 380px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease-in-out;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 10px 0;
  color: #000;
}

.role {
  font-size: 16px;
  font-weight: 600;
  color: #6a0572;
  margin-bottom: 12px;
}

.about-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ---------------- SKILLS SECTION ---------------- */

.skills-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* Glow background */
.skills-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.skills-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6a0572;
  margin-bottom: 10px;
}

/* Subtitle */
.skills-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 35px;
}

/* Category spacing */
.skills-category {
  margin-bottom: 35px;
}

/* Category headings */
.skills-category h3 {
  color: #8e44ad;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Skills container */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Skill cards */
.skill-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Hover effect (PRO LEVEL 😏) */
.skill-card:hover {
  transform: translateY(-6px) scale(1.05);
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ---------------- PROJECTS SECTION ---------------- */

.projects-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* Glow background */
.projects-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.projects-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6a0572;
  margin-bottom: 40px;
}

.project-card {
  background: white;
  max-width: 500px;
  margin: auto;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #333;
}

/* Project Buttons */
.project-buttons {
  margin-top: 20px;
}

.project-btn {
  display: inline-block;
  margin: 8px;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(45deg, #6a0572, #d63384);
  color: white;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.project-btn:hover {
  transform: translateY(-3px);
}

.project-btn.demo {
  background: linear-gradient(45deg, #4a4e69, #6a0572);
}

/* Projects Container Grid */
.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Project Card Update */
.project-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-8px);
}

/* ---------------- ANIMATION ---------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: 1fr;
  }
}