
.pk-gender-section {
    padding: 60px 20px;
}

.pk-gender-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pk-card {
    height: 300px;
    border-radius: 22px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transform: translateY(40px);
    opacity: 0;
    background-size: cover;
    background-position: center;
}

.pk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.pk-card h3,
.pk-card span {
    position: relative;
    z-index: 2;
}

.pk-card h3 {
    font-size: 38px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pk-card span {
    font-size: 14px;
    letter-spacing: 2px;
}

.pk-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .pk-gender-wrapper {
        grid-template-columns: 1fr;
    }
}
