body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  color: #333;
}

.hero {
  background: linear-gradient(to right, #667eea, #764ba2);
  color: white;
  padding: 6rem 1rem;
  text-align: center;
}

.hero h1 span {
  border-right: 3px solid white;
  padding-right: 5px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
}

.section-title {
  color: #4e54c8;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-custom {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

footer {
  background-color: #4e54c8;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.icon-box {
  font-size: 2rem;
  margin-right: 10px;
  color: #4e54c8;
}

.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #4e54c8;
}

/* Update this in your style.css file */
.profile-photo {
  width: 180px;   /* Set a fixed width */
  height: 180px;  /* Set a fixed height equal to the width */
  object-fit: cover; /* This crops the image to fit the dimensions without distortion */
  border-radius: 50%; /* This will now make it a perfect circle */
  border: 4px solid #4e54c8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}