/* HERO */
.team-hero {
    padding: 100px 20px 40px;
    background: radial-gradient(circle at top, #0b0f2a, #050816);
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.team-title span {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-subtitle {
    color: #aaa;
}

/* SECTION */
.team-section {
    background: linear-gradient(180deg, #050816, #0b0f2a);
}

/* CARD */
.team-card {
    background: linear-gradient(135deg, #0f1530, #050816);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.25);
}

/* IMAGE */
.team-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* INFO */
.team-info {
    padding: 15px;
    color: #fff;
}

.team-info h4 {
    margin: 10px 0 5px;
}

.role {
    color: #f7e27a;
    font-size: 14px;
}

.exp {
    color: #ccc;
    font-size: 12px;
}

.rating {
    color: gold;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    border: none;
    color: #000;
    font-weight: 600;
}

/* CTA */
.team-cta {
    background: linear-gradient(135deg, #0a0f2c, #1a237e);
    color: #fff;
}
/* ZODIAC BG */
.zodiac-bg {
    position: absolute;
    width: 300px;
    opacity: 0.05;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* HERO STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #f7e27a;
    font-size: 14px;
}
.team-extra {
    background: linear-gradient(180deg, #050816, #0b0f2a);
}

.extra-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: 0.3s;
}

.extra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}
@media (max-width: 768px) {
    .team-hero {
        padding: 50px 15px 5px; /* 🔥 pehle 100px tha */
    }

    .team-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .team-subtitle {
        font-size: 10px;
    }

    .hero-stats {
        gap: 10px;
        font-size: 12px;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {

    .team-card {
        padding-bottom: 12px; /* 🔥 kam karo */
    }

    .team-img img {
        height: 150px; /* 🔥 pehle 220px tha */
    }

    .team-info {
        padding: 10px;
    }

    .team-info h4 {
        font-size: 14px;
        margin: 6px 0;
    }

    .designation {
        font-size: 12px;
    }

    .exp {
        font-size: 11px;
    }

    .team-card .btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}
@media (max-width: 768px) {

    .team-extra .row {
        gap: 10px;
    }

    .extra-card {
        padding: 15px;
        margin-bottom: 10px;
    }
}