
 /* team info  */
 .team-info {
    background-color: #f4f4f9;
    padding: 30px;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    position: relative;
    overflow: hidden;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.2), rgba(0, 204, 255, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.team-info:hover::before {
    opacity: 1;
}

.team-info p {
    z-index: 2;
    position: relative;
    font-family: 'Adamina', serif;
}

.team-info p::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff0054;
    margin: 20px auto;
    border-radius: 10px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.team-info:hover p::after {
    opacity: 1;
    transform: scaleX(1);
}

.team-info p {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ,,, */

/* hero-btn */
.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  margin-top: 20px;
  background-color: #ff0054;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 150, 0.6), rgba(0, 204, 255, 0.6));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hero-btn:hover {
  background-color: #d40047;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before {
  opacity: 1;
}

.hero-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.hero-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 0, 150, 0.3);
}

 /* team info end */


 /* card  */
 /* Container for the photo section */
.container-photo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #f3f3f3;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background floating animation */
.container-photo::before,
.container-photo::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 75, 43, 0.1);
    border-radius: 50%;
    animation: floating 10s infinite;
    z-index: 0;
}

.container-photo::before {
    top: -150px;
    left: -150px;
}

.container-photo::after {
    bottom: -150px;
    right: -150px;
    animation-duration: 8s;
}

/* Floating animation */
@keyframes floating {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Section title with elegant underline animation */
.container-photo h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 2;
    font-weight: bold;
}

.container-photo h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: #ff4b2b;
    left: 0;
    bottom: -10px;
    margin: 0 auto;
    transition: width 0.4s;
}

.container-photo h1:hover::after {
    width: 100%;
}

/* Grid layout for photo cards */
.row-photo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 150px;
  z-index: 10;
  position: relative;
  max-width: 750px; 
  margin: auto;
}

/* Team cards with hover animation */
.t-card {
  width: 300px;
  height: 400px;
  background: #fff;
  padding: 15px;
  border-radius: var(--br);
  transition: 0.5s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
  .t-card:hover {
   /* box-shadow: 0px 3px 10px 5px #e9e9e9; .. */
  }
  .t-card img {
    max-width: 70%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    border: 4px solid var(--bc, #000);
    align-content: center;
    margin-left: 2.5rem;
  }
  h1 {
    margin: 20px 0;
  }
  h2 {
    margin: 15px 0 5px;
    font-size: 1.2rem
  }
  .t-card .role {
    font-size: 90%;
    color: #444;
    margin-bottom: 20px;
  }
  .t-card a {
    background: var(--btn, #000);
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    display: block;
    border-radius: var(--br);
    text-decoration: none;
    margin-top: 15px;
  }
  
  .t-card:hover{
    background-color: rgba(190, 195, 192, 0.193);
  }
  
  @media (max-width: 767px) {
    /* .row-photo {
      flex-wrap: wrap;
      justify-content: center;
      padding: 10px;
    } */
  
    .t-card {
      flex: 0 0 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 420px) {
    .t-card {
      flex: 0 0 calc(100% - 20px);
      max-width: calc(100% - 20px);
    }
  }


  #jsa{
    margin-top: 6rem
  }