* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #00e5ff;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  object-fit: cover;
}

.hero-text h1 {
  font-size: 2.6rem;
  color: #00e5ff;
}

.hero-text h2 {
  font-size: 1.2rem;
  color: #cbd5e1;
}

.location,
.contact {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact a {
  color: #00e5ff;
  text-decoration: none;
}

.hero-buttons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #00e5ff;
  color: #00e5ff;
}

.btn:hover {
  background: #00e5ff;
  color: #0f172a;
  transform: translateY(-3px);
}

/* HEADINGS */
h3 {
  font-size: 1.5rem;
  color: #00e5ff;
  margin: 20px 0;
  position: relative;
  display: inline-block;
  width: 100%;
}

h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #6366f1);
  border-radius: 2px;
}

/* SKILLS */
.skills-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.skill {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.skill:hover {
  transform: translateY(-5px);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
}

.skill i {
  font-size: 1.8rem;
  color: #00e5ff;
  margin-bottom: 10px;
}

/* PROJECTS */
.project {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.project-icon {
  font-size: 1.8rem;
  color: #00e5ff;
}

/* EDUCATION */
.edu-item {
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 229, 255, 0.1);
  text-align: center;
}

.footer-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.social-links a {
  color: #00e5ff;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #6366f1;
  transform: scale(1.1);
}

.copyright {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .container {
    margin: 0 auto;
  }
}
