body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(ellipse at center, #0f0f0f, #1a1a1a);
  color: #f0f0f0;
  overflow-x: hidden;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 2s ease;
}

.intro h1 {
  font-size: 2rem;
  margin-top: 1rem;
  color: #00f2ff;
}

.subtitle {
  font-size: 1.2rem;
  color: #999;
  margin-top: 0.5rem;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #00f2ff;
  box-shadow: 0 0 20px #00f2ff44;
  transition: transform 0.5s ease;
}
.profile-pic:hover {
  transform: scale(1.05);
}

.buttons {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

button {
  background-color: #111;
  color: #00f2ff;
  border: 2px solid #00f2ff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
button:hover {
  background-color: #00f2ff;
  color: #111;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about h1 {
  font-size: 2.5rem;
  color: #00ffe0;
  margin-bottom: 1rem;
}

.desc {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  color: #ccc;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid #00ffe044;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.1);
}
.exp-log h1 {
  font-size: 2.5rem;
  color: #00ff99;
  margin-bottom: 2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

.job {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #00ff99;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.1);
  text-align: left;
}

.job h2 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

.job h4 {
  color: #ccc;
  margin-bottom: 1rem;
}

.job p {
  line-height: 1.6;
  color: #bbb;
}
.projects h1 {
  font-size: 2.5rem;
  color: #ff57d6;
  margin-bottom: 2rem;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #ff57d677;
  box-shadow: 0 0 25px rgba(255, 87, 214, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(255, 87, 214, 0.3);
}

.project-card h2 {
  color: #ff89f0;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: #ccc;
  margin-bottom: 1rem;
}

.card-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.projects h1 {
  font-size: 2.5rem;
  color: #ff57d6;
  margin-bottom: 2rem;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #ff57d677;
  box-shadow: 0 0 25px rgba(255, 87, 214, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(255, 87, 214, 0.3);
}

.project-card h2 {
  color: #ff89f0;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: #ccc;
  margin-bottom: 1rem;
}

.card-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.certs h1 {
  font-size: 2.5rem;
  color: #ffa500;
  margin-bottom: 2rem;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.cert-badge {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 5px solid #ffa500;
  padding: 1.2rem;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
}

.cert-badge h3 {
  color: #ffd580;
  margin-bottom: 0.5rem;
}

.cert-badge p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
.skillz h1 {
  font-size: 2.5rem;
  color: #00eaff;
  margin-bottom: 2rem;
}

.skill-section {
  margin-bottom: 3rem;
}

.skill-section h2 {
  color: #00ffee;
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.skill-tags span {
  background-color: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffee;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #ccffff;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.skill-tags span:hover {
  background-color: #00ffee;
  color: #111;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.edu h1 {
  font-size: 2.5rem;
  color: #7fddff;
  margin-bottom: 2rem;
}

.edu-timeline {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.edu-block {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-left: 4px solid #7fddff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(127, 221, 255, 0.1);
  transition: transform 0.3s ease;
}

.edu-block:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(127, 221, 255, 0.2);
}

.edu-block h2 {
  color: #a5f2ff;
  margin-bottom: 0.3rem;
}

.edu-block h4 {
  color: #ddd;
  margin-bottom: 0.8rem;
}

.edu-block p {
  color: #bbb;
  line-height: 1.6;
}
.resume h1 {
  font-size: 2.5rem;
  color: #ffb347;
  margin-bottom: 2rem;
}

.resume-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.note {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 3rem;
}
.contact h1 {
  font-size: 2.5rem;
  color: #66ffcc;
  margin-bottom: 1rem;
}

.connect-intro {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  background-color: #111;
  color: #eee;
  border: 1px solid #66ffcc;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  align-self: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
