body{
    background: linear-gradient(180deg, #0a0a0f 0%, #1c1c1c 40%, #1a1a1f 100%);
    color: rgb(227, 227, 227);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(46,195,150,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1{
    text-align: center;
    font-weight: 400;
    font-size: 2.8rem ;
}

h2{
    margin-top: 10px;
    text-align: center;
    font-weight: 300;
}

h3{
    text-align: center;
    padding-top: 10px;
    padding-left: 10px;
    margin-top: 5px;
    color: #dddddd;
}

h4{
    text-align: center;
    padding-left: 10px;
    color: #b5b5b5; 
}

.team-hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.team-hero h2{
    max-width: 650px;
    font-size: 1.4rem;
    line-height: 1.4rem;
}

.team-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: auto auto;
    max-width: 1400px;
    padding-bottom: 150px;
}

.team-member{
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    margin-bottom: 50px;
    background: linear-gradient(145deg, rgba(42,42,42,0.95), rgba(28,28,28,0.9));
    padding-bottom: 20px;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(46,195,150,0.4), rgba(96,149,190,0.4));
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 16px 32px rgba(0, 0, 0, 0.6),
        0 28px 56px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.team-image-container{
    height: 350px;
    width: 350px;
    background: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team-image-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    filter:grayscale(50%);
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0077b5;
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 20px;
  margin-top: 10px;
  font-size: 1rem;
  margin-left: 10px;
  padding-right: 10px;
  align-self: flex-end;
  margin-right: 10px;
}

.linkedin-btn i {
    margin-right: 5px;
    animation: unset;
}
.linkedin-btn:hover {
    background: #005f8a;
}

.team-image-container img.contain-img {
    object-fit: contain;
}
.team-image-container img.cover-img {
    object-fit: cover;
}