/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 1 Nov, 2025, 12:21:53 PM
    Author     : Kishan
*/

.team-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
  }

  .glow-icon {
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8), 0 0 30px rgba(0, 123, 255, 0.6);
    transition: all 0.3s ease;
  }

  .team-item:hover .glow-icon {
    text-shadow: 0 0 25px rgba(0, 123, 255, 1), 0 0 45px rgba(0, 123, 255, 0.8);
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .team-item {
      padding: 3rem 1rem;
    }

    .glow-icon {
      font-size: 4rem;
    }
  }