body {
    background:linear-gradient(150deg,#083642,#000000);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.card {
    background: #000000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px; /* keep your card's rounded look */
    box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.7); /* glow color */
    transition: box-shadow 0.3s ease-in-out;
}

.card-wrapper {
  perspective: 1000px; /* needed for 3D tilt */
}

.card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    box-shadow: 0 0 30px 10px rgba(0, 255, 255, 1); /* stronger glow on hover */
}

.card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #66a6ff;
    margin-bottom: 15px;
}

.card h1{
color: white;
}

.card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: white;
}

.card p {
    font-size: 0.9rem;
    color: white;
    margin: 10px 0 20px;
}

.card ul{
color: white;
list-style: none;
  padding: 0;      
  margin: 0;   
}

button {
    background: #1395D6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

button a {
    color: white;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}

button:hover {
    background: #1C5CB5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}


