

.profile-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 4.5rem;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #007bff;
  object-fit: cover;
}
.profile-text{
  padding: 10px;
}

.profile-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.profile-text .role {
  color: #007bff;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.profile-text p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cta{
  padding: 10px;

}
.cta h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  /* margin-top: 40px; */
}

.cta button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background-color: white;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta button:hover {
  background-color: #f0f0f0;
}

@media (min-width: 768px) {
  .profile-container {
    flex-direction: row;
    text-align: left;
  }

  .profile-text {
    flex: 1;
    padding-left: 2rem;
  }
}



.btn-link {
  display: inline-block;
  background-color: #805ad5;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-link:hover {
  background-color: #6b46c1;
  transform: translateY(-2px);
}
