html {
    scroll-behavior: smooth;
  }

  body {
    background-color: linear-gradient(135deg, #e3f2fd, #fce4ec);;
    
  }

.hero-team {
opacity: 0;
transform: translateY(50px);
transition: all 1s ease-in-out;
}
.aos-animate.hero-team {
opacity: 1 !important;
transform: translateY(0) !important;
}


  .team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .team-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
  }

  .team-role {
    font-size: 1.05rem;
    color: #6c757d;
  }

  footer.footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
  }

  .glass-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .glass-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .custom-toggler {
    border: none;
  }

  .custom-toggler:focus {
    box-shadow: none;
  }

  .nav-link {
      color: #212121 !important; /* темний текст для кращої контрастності */
      font-weight: 500;
      transition: color 0.3s ease;
  }

  .nav-link:hover {
      color: #2962ff !important;
      text-shadow: 0 0 3px rgba(41, 98, 255, 0.4);
  }