   :root {
            --team-blue: #1e40af;
            --team-indigo: #4f46e5;
            --team-purple: #7c3aed;
            --team-cyan: #06b6d4;
            --team-teal: #14b8a6;
            --team-gold: #d4af37;
            --team-orange: #f97316;
        }

        /* Team Section Background */
        #our-team {
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #c4b5fd 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        #our-team::before {
            content: '';
            position: absolute;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.12), transparent);
            border-radius: 50%;
            top: -450px;
            left: 50%;
            transform: translateX(-50%);
            animation: float-team 28s ease-in-out infinite;
        }

        #our-team::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
            border-radius: 50%;
            bottom: -350px;
            right: -350px;
            animation: float-team 24s ease-in-out infinite reverse;
        }

        @keyframes float-team {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-70px); }
        }

        /* Section Title */
        .team-title {
            background: linear-gradient(135deg, var(--team-indigo) 0%, var(--team-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shine-team 3s ease-in-out infinite;
        }

        @keyframes shine-team {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.35); }
        }

        /* Title Underline */
        .team-underline {
            width: 150px;
            height: 5px;
            background: linear-gradient(90deg, var(--team-indigo), var(--team-purple), var(--team-indigo));
            position: relative;
            overflow: hidden;
        }

        .team-underline::before {
            content: '';
            position: absolute;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            animation: slide-team 2.5s ease-in-out infinite;
        }

        @keyframes slide-team {
            0% { left: -50%; }
            100% { left: 150%; }
        }

        /* Team Member Cards */
        .team-card {
            background: white;
            border: 2px solid transparent;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
            transition: left 0.7s;
        }

        .team-card:hover::before {
            left: 100%;
        }

        .team-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 70px rgba(79, 70, 229, 0.3) !important;
            border-color: var(--team-indigo);
        }

        /* Special Card for Patent Holder */
        .patent-holder {
            border: 3px solid var(--team-gold) !important;
        }

        .patent-holder:hover {
            border-color: var(--team-gold) !important;
            box-shadow: 0 30px 70px rgba(212, 175, 55, 0.4) !important;
        }

        /* Crown Badge for Patent Holder */
        .crown-badge {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--team-gold), #b8941f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
            animation: pulse-crown 2.5s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes pulse-crown {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.12); }
        }

        .crown-badge i {
            font-size: 2rem;
            color: white;
            animation: rotate-crown 4s ease-in-out infinite;
        }

        @keyframes rotate-crown {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        /* Member Avatar */
        .member-avatar {
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, var(--team-indigo), var(--team-purple));
            margin: 0 auto 25px;
            position: relative;
            animation: float-avatar 6s ease-in-out infinite;
        }

        .member-avatar::after {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border: 4px solid var(--team-purple);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-avatar-ring 2.5s ease-in-out infinite;
        }

        @keyframes float-avatar {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse-avatar-ring {
            0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(1.4); }
        }

        .member-avatar i {
            font-size: 3.5rem;
            color: white;
            animation: bounce-avatar-icon 3s ease-in-out infinite;
        }

        @keyframes bounce-avatar-icon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Role Badge */
        .role-badge {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, var(--team-indigo), var(--team-purple));
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
        }

        .role-badge-gold {
            background: linear-gradient(135deg, var(--team-gold), #b8941f);
        }

        /* Royalty Badge */
        .royalty-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--team-gold), #b8941f);
            color: white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 800;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-left: 5px solid var(--team-teal);
            position: relative;
        }

        .info-box::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--team-teal), var(--team-cyan));
            animation: glow-info 2.5s ease-in-out infinite;
        }

        @keyframes glow-info {
            0%, 100% { box-shadow: 0 0 20px var(--team-teal); }
            50% { box-shadow: 0 0 35px var(--team-cyan); }
        }

        /* Alert Box */
        .alert-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid var(--team-gold);
            position: relative;
        }

        .alert-box::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom, var(--team-gold), #b8941f);
            animation: shimmer-alert 2s ease-in-out infinite;
        }

        @keyframes shimmer-alert {
            0%, 100% { box-shadow: 0 0 20px var(--team-gold); }
            50% { box-shadow: 0 0 40px #b8941f; }
        }

        /* Decorative Elements */
        .decoration-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent);
            animation: float-decoration 22s ease-in-out infinite;
        }

        @keyframes float-decoration {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(40px, -40px) rotate(120deg); }
            66% { transform: translate(-40px, 40px) rotate(240deg); }
        }

        /* Click Indicator */
        .click-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(79, 70, 229, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--team-indigo);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .click-indicator {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .member-avatar {
                width: 100px;
                height: 100px;
            }

            .crown-badge {
                width: 60px;
                height: 60px;
            }

            .crown-badge i {
                font-size: 1.5rem;
            }

            .royalty-badge {
                font-size: 0.9rem;
                padding: 8px 18px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        .text-primarys{
            color:lightslategray !important;
         
        }