    

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--surface);
            padding-top: 80px;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 3rem;
            font-weight: 500;
        }

        /* Modern Team Cards */
        .team-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
        }

        .team-card {
            position: relative;
            height: 500px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, 
                transparent 0%, 
                transparent 40%, 
                rgba(0,0,0,0.4) 70%, 
                rgba(0,0,0,0.9) 100%);
            z-index: 2;
            transition: all 0.5s ease;
        }

        .team-card:hover::before {
            background: linear-gradient(180deg, 
                rgba(124, 30, 46, 0.3) 0%, 
                rgba(124, 30, 46, 0.6) 50%, 
                rgba(124, 30, 46, 0.95) 100%);
        }

        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover .team-img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            z-index: 3;
            transform: translateY(0);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 700;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-role {
            color: var(--accent);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 10px;
            opacity: 1; /* Always visible */
            transform: translateY(0); /* Always in position */
            transition: all 0.3s ease;
        }

       .view-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: rgba(168, 140, 96, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent);
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0); /* Changed from translateY(20px) to translateY(0) */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove this rule since button is always visible now */
/* .team-card:hover .view-profile {
    opacity: 1;
    transform: translateY(0);
} */

.view-profile:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px); /* Add slight lift on hover */
}

.view-profile i {
    transition: transform 0.3s ease;
}

.view-profile:hover i {
    transform: translateX(5px);
}
        /* Floating Badge */
        .team-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(168, 140, 96, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 4;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .team-card:hover .team-badge {
            opacity: 1;
            transform: translateY(0);
        }

        /* Ripple Effect */
        .team-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(168, 140, 96, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 1;
        }

        .team-card:hover::after {
            width: 300px;
            height: 300px;
        }

        /* Grid Animation */
        .team-card {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }
        .team-card:nth-child(5) { animation-delay: 0.5s; }
        .team-card:nth-child(6) { animation-delay: 0.6s; }

        /* Decorative Elements */
        .team-corner-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 80px;
            background: var(--accent);
            opacity: 0;
            transform: translate(-100%, 100%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .team-card:hover .team-corner-accent {
            opacity: 0.3;
            transform: translate(0, 0);
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-card {
                height: 400px;
            }

            .team-name {
                font-size: 1.5rem;
            }

            .team-overlay {
                padding: 2rem;
            }
        }

        



        