:root {
    --primary-blue: #0f172a;      
    --primary-silver: #c0c0c0;    
    --primary-gold: #d4af37;      
    --background-dark: #050a1a;   
    --background-gradient: linear-gradient(135deg, #0f172a, #1e293b);
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-glow: rgba(212, 175, 55, 0.4); 
    --transition: all 0.4s ease-in-out;
}

.bhatiaforcongress-land-models-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.bhatiaforcongress-model-card {
    position: relative;
    width: 320px;
    height: 480px;
    overflow: hidden;
    background: var(--background-gradient);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-glow);
    transition: var(--transition);
    cursor: pointer;
    border-radius: 10px 10px 10px 0;
}

.bhatiaforcongress-model-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2), transparent 70%);
    opacity: 0.3;
    transition: var(--transition);
    z-index: 0;
}

.bhatiaforcongress-model-card:hover::before {
    opacity: 0.6;
}

.bhatiaforcongress-model-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 20px 40px rgba(212, 175, 55, 0.4);
}

.bhatiaforcongress-model-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bhatiaforcongress-model-age-location,
.bhatiaforcongress-model-price {
    display: flex;
    position: absolute;
    z-index: 999;
    background: #d9b670;
    justify-content: space-between;
    padding: 5px;
    color: black;
}

.bhatiaforcongress-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhatiaforcongress-model-age-location {
    z-index: 999;
    left: 0;
     color: black;
}
.bhatiaforcongress-model-price{
    z-index: 999;
    left: 0;
    top: 35px;
}
.bhatiaforcongress-model-price span{
    color: black;
    
}

.bhatiaforcongress-model-info {
    position: relative;
    
    height: 100%;
    background: inherit;
   
    font-family: 'Playfair Display', serif;
    text-align: center;
    
    display: flex;
    justify-content: space-around;
}

.bhatiaforcongress-personal-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 24px;
    color: #111111;
    font-weight: 800;
    text-transform: uppercase;
     background: linear-gradient(135deg, rgb(227, 174, 94), rgb(186, 145, 87), rgb(251, 224, 139), rgb(227, 174, 94));
    z-index: 2;
    border-top: 1px solid #ffffff;
}

.bhatiaforcongress-model-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-silver);
    text-shadow: 0 0 6px rgba(192, 192, 192, 0.4);
}

.bhatiaforcongress-model-details {
    font-size: 16px;
    color: #111111;
    margin-top: 6px;
}

.bhatiaforcongress-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(5, 10, 26, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.bhatiaforcongress-model-card:hover .bhatiaforcongress-hover-overlay {
    opacity: 1;
}

.bhatiaforcongress-hover-item {
    margin: 8px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .bhatiaforcongress-model-card {
        width: 180px;
        height: 280px;
    }

    .bhatiaforcongress-model-name {
        font-size: 18px;
    }

    .bhatiaforcongress-hover-item {
        font-size: 14px;
    }
}


