body {
    background: #f8f8f8;
  
}


@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

/* Chief Justice Card */
.chief-card {
    background: linear-gradient(135deg, #e9d1a6, #f3dfb7);

    border: 2px solid #b8860b;
    border-radius: 20px;
    text-align: center;
    padding: 35px 20px;
    max-width: 420px;
    margin: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.chief-card img {
    width: 170px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #b8860b;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.chief-card img:hover {
    transform: scale(1.05);
}

.chief-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.chief-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 15px;
}

.chief-btn {
    background: #b8860b;
    border: none;
    /* padding: 8px 18px; */
    color: #fff;
    /* border-radius: 30px; */
    font-size: 0.95rem;
    transition: 0.3s;
}

.chief-btn:hover {
    background: #b8860b;
}

/* Judge Grid Tiles */
.judge-card {
    background: linear-gradient(135deg, #ece7de, #f7f2e9);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.judge-card:hover {
    background: linear-gradient(135deg, #fdf7e3, #fdf7e3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #b8860b;
}

.former-cj-card {
    background: linear-gradient(135deg, #fdf7e3, #fdf7e3);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e7bf58;
}

.former-cj-card:hover {
    /* background: linear-gradient(135deg, #fdf7e3, #fdf7e3); */
    transform: scale(1.1); /* Zoom-in effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #b8860b;
}

.former-judge-card {
    background: linear-gradient(135deg, #f1eddb, #f5eedd);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e7bf58;

}

.former-judge-card:hover {
    /* background: linear-gradient(135deg, #fdf7e3, #fdf7e3); */
    transform: scale(1.1); /* Zoom-in effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #b8860b;
}

.rounded_border{
    border-radius: 10px !important;
}

.judge-img {
    width: 150px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #b8860b;
    margin-bottom: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.judge-card:hover .judge-img {
    transform: scale(1.08);
}

.judge-info h6 {
    font-weight: 600;
    font-size: 1.09rem;
    color: #333;
}

.judge-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.read-btn {
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 6px 14px;
    /* border-radius: 25px; */
    font-size: 0.85rem;
    transition: 0.3s;
}

.read-btn:hover {
    background: #b8860b;
}