body {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
}

.card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 24px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

.paragraph {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.project-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 32px;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.project-title {
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-description {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #3b82f6;
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  transition: 0.3s;
  font-weight: 600;
}

.btn-primary:hover {
  background: #2563eb;
  transform: scale(1.03);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid #334155;
  transition: 0.3s;
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: #3b82f6;
}

.input {
  width: 100%;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 16px;
  color: white;
  outline: none;
}

.input:focus {
  border-color: #3b82f6;
}

.badge-blue,
.badge-cyan,
.badge-indigo,
.badge-pink {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
}

.badge-indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
}

.badge-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #f9a8d4;
}

.profile-img {
  width: 224px !important;
  height: 224px !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.resume-button {
    padding: 10px 20px;
    background-color: #3b82f6; /* Adjust to match your other buttons */
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}