/* ==============================================
   PURE CSS ADMISSION POPUP - NO BOOTSTRAP
   Professional | Responsive | Screen Lock Included
   ============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Popup Overlay - यह स्क्रीन लॉक करेगा */
.srs-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 48, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.3s ease;
}

.srs-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Popup Container */
.srs-popup-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 20px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 30px 60px -15px rgba(0, 30, 60, 0.4);
    overflow: hidden;
    transform: scale(0.96) translateY(20px);
    transition: transform 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}

.srs-popup-overlay.active .srs-popup-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Popup Header */
.srs-popup-header {
    background: linear-gradient(105deg, #0a2b5e 0%, #1b3d7c 50%, #234b8f 100%);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.srs-popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffb100, transparent);
}

.srs-popup-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.title-icon {
    font-size: 1.9rem;
}

/* Close Button */
.srs-popup-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #FFB100;
    font-size: 28px;
    font-weight: 300;
}

.srs-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Popup Body */
.srs-popup-body {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
}

/* Image Wrapper */
.srs-image-wrapper {
    display: block;
    text-decoration: none;
    border-radius: 28px;
}

.srs-image-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 30, 60, 0.35);
    transition: all 0.3s ease;
}

.srs-image-wrapper:hover .srs-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(10, 43, 94, 0.5);
}

.srs-hero-image {
    width: 100%;
    display: block;
    background: #f8faff;
}

/* Popup Note */
.srs-popup-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #6c7a8e;
    background: #f8faff;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .srs-popup-header { padding: 1rem 1.5rem; }
    .srs-popup-title { font-size: 1.4rem; }
    .title-icon { font-size: 1.6rem; }
    .srs-popup-body { padding: 1.5rem; }
    .srs-popup-close { width: 34px; height: 34px; font-size: 26px; }
}

@media (max-width: 576px) {
    .srs-popup-title { font-size: 1.2rem; }
    .title-icon { font-size: 1.4rem; }
    .srs-popup-body { padding: 1rem; }
    .srs-popup-close { width: 30px; height: 30px; font-size: 24px; }
}

 
body.srs-popup-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}