  .team-section-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }

 
  .team-wrapper {
    padding: 15px;
    max-height: 900px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
  }
  
 
  .team-wrapper:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    z-index: 1;
  }

  .team-wrapper.expanded {
    max-height: 3000px;
    transition: max-height 0.8s ease;
  }
  
  .team-wrapper.expanded::after {
    display: none;
  }


  .team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }


  .team-image {
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .team-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }


  .team-content {
    padding: 1.25rem;
  }

  .team-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .team-role {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
  }

  .team-qual {
    font-size: 0.8rem;
    color: #94a3b8;
  }


  .show-toggle {
    display: none;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
  }

  .show-toggle button {
    border: none;
    background: #0f766e;
    color: #fff;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
  }

  .show-toggle button:hover {
    background: #0d9488;
    transform: translateY(-2px);
  }


  .team-card {
    animation: fadeUp 0.5s ease both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

    .section-green {
      background-color: #d6d68e;
      border-radius: 42px !important;
    }

    .numcon {
      width: 28px;
      height: 28px;
      background-color: #005c53;
      color: white;
      text-align: center;
      border-radius: 50%;
    }

    .me-3 img {
      max-width: unset !important;
      height: auto;
    }

    section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 500px;
    }

    .circle {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      margin-right: 12px;
      border: 3px solid;
      display: inline-block;
    }

    .circle.green {
      border-color: #2e7d32;
    }

    .circle.blue {
      border-color: #1e88e5;
    }

    .circle.orange {
      border-color: #ef6c00;
    }

    h1 {
      letter-spacing: 0.5px;
    }

    h5 {
      font-size: 1.05rem;
      letter-spacing: 0.5px;
    }

    p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .shadow-sm {
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    }

    .border-start {
      border-left-width: 0.5rem !important;
    }

    .me-3 {
      margin-right: 1rem !important;
    }

    .bg-white {
      background-color: #ffffff;
    }

    .text-success {
      color: #176217 !important;
    }

    .border-success {
      border-color: #9fc131 !important;
    }
  html {
    scroll-behavior: smooth;
  }

  section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
  }

  .section-green {
    background: #cfe3a3;
    border-radius: 8px;
  }

  .hero-slider-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-slider {
    position: relative;
    width: 100%;
  }

  .hero-slide {
    display: none;
    width: 100%;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
  }

  .hero-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .hero-dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background: #ffffff;
    opacity: 0.5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
  }

  .hero-dot.active {
    opacity: 1;
    background: #9fc131;
  }

  @media (max-width:768px) {

    .hero-dots {
      bottom: 8px;
    }

    .hero-dot {
      height: 8px;
      width: 8px;
    }

  }
