/* home  */
.text-justify {
  text-align: justify !important;
}

/*team page*/
.team-section {
  font-family: "Poppins", sans-serif;
}
.team-card {
  perspective: 1000px;
  position: relative;
  height: 400px;
}
.team-front, .team-back {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
}
.team-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.team-front .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 15px;
}
.team-back {
  background: #fff;
  border: 1px solid #eee;
  transform: rotateY(180deg);
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.team-card:hover .team-front { transform: rotateY(180deg); }
.team-card:hover .team-back { transform: rotateY(360deg); }

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-links li a {
  color: #0d6efd;
  font-size: 18px;
  transition: color .3s;
}
.social-links li a:hover {
  color: #6610f2;
}

.team-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px; /* adds gap between cards */
  margin-top: 30px;
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
}

/*header social media icon*/
.header-social-links ul li a i {
    font-size: 16px;
    color: inherit;
}

.header-social-links ul li a {
    width: 28px;
    height: 28px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

/*header*/
/*.main-header {*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: 999;*/
/*  width: 100%;*/
/*  background: #fff; */
/*  box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
/*}*/

/*.header-sticky {*/
/*  position: relative;*/
/*}*/


.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgb(106 45 145) !important;
}

.m-button-header{
    margin-bottom: -26px;
}

.header-social-links ul li a i {
    font-size: 14px;
    color: inherit;
}



