/* ==========================================================
   Rashtriya Computer Education — Admission Page Styles
   ========================================================== */

/* ── Plan Popular Badge ── */
.plan-pop {
    border: 2px solid #22c55e;
    position: relative;
}

.plan-pop::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ── Gallery Image Hover ── */
.gallery-img {
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* ==========================================================
   Mobile Responsive — Admission Page
   ========================================================== */
@media (max-width: 768px) {
    /* Tighter card padding on mobile */
    .plan-pop,
    .card-h {
        padding: 20px !important;
    }

    /* Gallery images fixed height on mobile */
    .gallery-img {
        min-height: 120px;
    }

    /* Disable gallery hover zoom on mobile */
    .gallery-img:hover {
        transform: none;
    }

    /* Form inputs slightly smaller padding */
    input, select, textarea {
        padding: 10px 14px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    /* Even tighter plan cards */
    .plan-pop::before {
        font-size: 10px;
        padding: 2px 10px;
    }
}
