
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            margin-bottom: 50px;
            padding: 20px;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            text-shadow: 0 2px 10px rgba(76, 201, 240, 0.2);
        }

        .subtitle {
            font-size: 1.2rem;
            color: #212b2f;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            padding: 20px;
        }


        @media (max-width: 768px) {
            .grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }
    /* body {
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #0f0f1c;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        } */

        .about-us {
        padding: 40px 10px;
        max-width: 1200px;
        margin: 0 auto;
        }

        .team-member {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;

        }
.hero {
  text-align: center;
  padding: 30px 20px;   /* reduced from 80px */
  max-width: 800px;
  margin: 10px auto;    /* reduce top/bottom margin */
}

        .member-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }

        .team-hero {
  padding-top: 30px;    /* Reduce from a high value (like 80px) */
  padding-bottom: 20px; /* Reduce bottom as well */
}
        .member-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(90deg, rgba(148, 140, 255, 1) 0%, rgba(18, 59, 181, 1) 0%, rgba(9, 226, 230, 1) 100%);
        z-index: -1;
        border-radius: 18px;
        opacity: 0;
        transition: opacity 0.4s ease;
        }

        .member-card:hover {
        transform: translateY(-15px) scale(1.05);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .member-card:hover::before {
        opacity: 1;
        }

        .member-card img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
        transition: transform 0.4s ease;
        }

        .member-card:hover img {
        transform: scale(1.1);
        }

        .member-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f2031;
  margin-bottom: 5px; /* Adjusts space between name and role */
  margin-top: 10px;    /* Adjusts space between image and name */
  text-align: center;
}
.member-card p {
  font-size: 1rem;
  color: #000; /* Text underneath the name is now black */
  margin: 0;
  text-align: center;
}
        .name {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        }

        .role {
        font-size: 1rem;
        color: #ccc;
        transition: color 0.3s;
        }

        .member-card:hover .role {
        color: #e9ecef;
        }
