@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #dedcdc;
}

header {
  background-color: #f0f0f0;
  width: 100%;
  /* position: fixed;
    z-index: 999; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
}

.logo {
  text-decoration: none;
  color: #3a6cf4;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8em;
}

.navigation a {
  color: #3a6cf4;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  padding-left: 30px;
}

.navigation a:hover {
  color: #601cfc;
}
/* Profile/Portfolio Page Styles */
.profile-section {
  min-height: calc(100vh - 80px);
  background-color: #dedcdc;
  padding: 60px 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-container h1 {
  color: #3a6cf4;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-card {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #3a6cf4;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(58, 108, 244, 0.2);
}

.stat-card h3 {
  color: #3a6cf4;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stat-card p {
  color: #555;
  font-size: 1.5rem;
  font-weight: 600;
}

.no-data {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  padding: 40px 20px;
}
/*Footer*/
.footer {
  background-color: #3a6cf4;
  color: #fff;
  text-align: center;
  padding: 40px 0 20px;
}

.footer-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #ffdd57;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #f1f1f1;
}

@media (max-width: 641px) {
  header {
    flex-direction: column;
    padding: 15px 20px;
    gap: 10px;
  }

  .navigation a {
    padding: 10px;
    display: inline-block;
  }

  .profile-section {
    padding: 40px 20px;
  }

  .profile-container {
    padding: 25px;
  }

  .profile-container h1 {
    font-size: 1.8rem;
  }

  .stat-card p {
    font-size: 1.2rem;
  }

  .footer {
    padding: 30px 15px;
  }
}
