/* profile pic  */
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #60a5fa;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #121212;
  /* Deep Dark Background */
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

nav a {
  color: #3498db;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

header {
  background: #1c1c1d;
  color: #60a5fa;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid #374151;
}

h1 {
  font-size: 3rem;
  margin: 0;
}

h2 {
  font-size: 2rem;
  color: #60a5fa;
  border-bottom: 1px solid #374151;
  padding-bottom: 10px;
}

p,
li {
  font-size: 1.2rem;
}

/* Increased text size */

.card {
    background: #0c0c0c; /* Dark slate */
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Makes the card "pop" up */
    border: 1px solid #38bdf8; /* Adds a nice blue glow */
}


.tag {
  background: #2563eb;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 1rem;
  margin: 5px;
  display: inline-block;
}

a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

a:hover {
  color: #93c5fd;
  text-decoration: underline;
}
.contact-btn {
  display: inline-block;
  /* Changed from block for better centering */
  background: #2563eb;
  color: white;
  padding: 15px 30px;
  margin: 20px auto;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
}

footer {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  margin-top: 60px;
  padding-bottom: 20px;
}

