@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --primary-color: #2563eb;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --text-color: #1f2937;
  --text-muted: #6b7280;
}

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

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-gradient);
  padding: 20px;
}

.card {
  background: var(--card-bg);
  width: 100%;
  max-width: 700px;
  display: flex;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

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

.card-sidebar {
  background: #f8fafc;
  width: 300px;
  padding: 40px;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card-info h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 5px;
}

.company {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.job-title {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.card-main {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

.contact-info {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-color);
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.social-links a:hover img {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .card {
    flex-direction: column;
  }

  .card-sidebar {
    width: 100%;
    padding: 30px;
  }

  .card-main {
    padding: 30px;
  }
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.skills span {
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: default;
}

.skills span:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
  margin-top: 10px;
  align-self: center;
  text-align: center;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}