@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

 body {
     font-family: 'Montserrat', sans-serif;
      background: #f1f4f9;
      color: #111;
    }

    .team-section {
      max-width: 1300px;
      margin: auto;
      padding: 100px 20px 30px 20px;
    }

    .team-section h2 {
      text-align: center;
      font-size: 3rem;
      color: #000038;
      margin-bottom: 20px;
    }

    .team-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 100px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 90px  40px;
    }

    .team-card {
      background: linear-gradient(to bottom right, #ffffff, #f3f6fa);
      border-radius: 24px;
      padding: 70px 25px 40px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
      position: relative;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform: translateY(40px);
      opacity: 0;
    }

    .team-card.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .team-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .team-photo-wrapper {
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 150px;
      background: radial-gradient(circle at 50% 50%, #000038, #1a1a50);
      padding: 5px;
      border-radius: 30%;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .team-photo {
      width: 100%;
      height: 100%;
      border-radius: 30%;
      object-fit: cover;
      border: 3px solid #fff;
    }

    .team-name {
      font-size: 1.4rem;
      font-weight: 800;
      color: #000038;
      margin-top: 50px;
      margin-bottom: 15px;
    }

    .team-role {
      font-size: 0.85rem;
      color: #000038;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    } 
    .team-email {
        text-decoration: none;
      font-size: 0.95rem;
      margin-bottom: 15px;
      color: blue;
    }
    .team-email:hover{
        text-decoration: underline;
    }
    .team-email a {
        text-decoration: none;
    }
   
    .team-email i {
      margin-right: 8px;
      color:rgb(218, 94, 0);
    }

    .team-bio {
      color: #444;
      line-height: 1.6;
      font-size: 0.95rem;
      margin-bottom: 20px;
      padding: 0 10px;
    }

    .linkedin-icon {
      font-size: 1.5rem;
      color: #0a66c2;
      background: #e8f1fd;
      padding: 10px;
      border-radius: 50%;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 2px 8px rgba(10, 102, 194, 0.15);
    }

    .linkedin-icon:hover {
      background: #d0e4fc;
      transform: scale(1.15);
    }

    .connect-counselor-container {
  text-align: center;
  margin-top: 2px;
  margin-bottom: 60px;
}

.connect-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #000038; /* Walsh Navy */
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 56, 0.35);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.connect-btn:hover {
  background: #222a5a;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 56, 0.55);
}
  .whatsapp-float {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }
        
        .whatsapp-float img {
            width: 65px;
            height: 65px;
            transition: transform 0.3s ease-in-out;
        }
        
        .whatsapp-float img:hover {
            transform: scale(1.1);
        }

    @media (max-width: 480px) {
      .team-section h2 {
        font-size: 2rem;
      }

      .team-subtitle {
        font-size: 1rem;
        margin-bottom: 100px;
      }

      .team-photo-wrapper {
        width: 100px;
        height: 100px;
        top: -50px;
      }

      .team-name {
        margin-top: 60px;
      }
    }