body {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  min-height: 100%;
}
.card {
  width: 100%;
  background-color: #1f1f1f;
  
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 3rem;
  animation: fadeInUp 1s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.5;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}
@keyframes fadeInUp {
  from {
	opacity: 0;
	transform: translateY(50px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}
.profile-pic-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.profile-pic-wrapper:hover img.profile-pic {
  transform: scale(1.1);
  box-shadow: 0 0 20px #F44001;
}
img.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #F44001;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  height: auto;
}
h2 {
  font-weight: 600;
}
.info-item {
  background-color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}
.info-item i {
  font-size: 2.5rem; 
  margin-bottom: 10px;
  color: #F44001;
}
.info-item h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.info-item p {
  font-size: 1.1rem;
  color: #ddd;
}
footer {
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 80px; 
}