.about-page-team-section {
  padding: 100px 20px;
  height: "";
  width: 100%;
}

.about-page-team-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.about-page-team-heading h2 {
  font-size: 1rem;
  color: #7665ff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.about-page-team-heading h1 {
  color: #151924;
  font-size: 3rem;
}

.ab-team-warrper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px;
}

.team-profile {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.team-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.member-profile-info {
  position: absolute;
  bottom: -100%; /* hidden initially */
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #6b63ffe2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s ease;
  text-align: center;
  padding: 15px;
}

.member-profile-info h3 {
  margin: 5px 0;
  font-size: 1.5rem;
  transition: all ease 0.4s;
}

.member-profile-info h3:hover {
  color: #fed201;
}

.member-profile-info p {
  font-size: 14px;
  opacity: 0.8;
}

.member-profile-linkedIn {
  position: absolute;
  bottom: 15px;
  background: #0a66c2;
  color: white;
  padding: 8px 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s ease;
}

.member-profile-linkedIn:hover {
  background: #004182;
}

.team-profile:hover .member-profile-info {
  bottom: 0; /* show details on hover */
}

.team-profile:hover {
  transform: scale(1.05);
}


.about-page-tittle {
  background: url(../images/about-page-tittle.jpeg) no-repeat center center / cover;
  min-height: 60vh; /* relative to screen height instead of fixed px */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; /* centers content vertically */
  flex-direction: column;
  z-index: 1;
  color: #fff;
  text-align: center;
}

/* Overlay for dark effect */
.about-page-tittle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.about-page-tittle * {
  position: relative;
  z-index: 2; /* keep text above overlay */
}



.about-page-content {
  text-align: center;
  color: white;
}

.about-page-content h1 {
    font-size: 3rem;
}

.about-page-content p {
    font-size: 1rem;
    margin-top: 10px;
}

.about-page-content p a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-page-content p a:hover {
    /* text-decoration: underline; */
    color: #fed201;
}


@media (max-width: 600px) {
  .about-page-team-heading h1 {
    font-size: 2.2rem;
  }
}


