/* ============== होमपेज — प्रीमियम डिज़ाइन ============== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

.home-page { overflow-x: hidden; }

/* ---------- Hero ---------- */
.home-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    background:
        linear-gradient(125deg, rgba(10, 35, 64, 0.94) 0%, rgba(13, 44, 84, 0.88) 45%, rgba(26, 82, 118, 0.82) 100%),
        url('../images/OIP.jpg') center/cover no-repeat;
    color: #fff;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(255, 193, 7, 0.15), transparent),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.home-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #ffd966;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.home-hero h1 {
    font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.home-hero h1 .gold {
    color: #ffc107;
    display: block;
    font-size: 0.92em;
}

.home-hero-lead {
    font-size: 1.12rem;
    line-height: 1.8;
    opacity: 0.92;
    max-width: 540px;
    margin: 0 0 28px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffc107, #ffda6a);
    color: #0d2c54;
    box-shadow: 0 8px 28px rgba(255, 193, 7, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 193, 7, 0.5);
    color: #0a2340;
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0d2c54;
    border-color: #fff;
}

.home-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.home-hero-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 193, 7, 0.5);
}

.home-hero-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #ffc107;
}

.home-hero-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats strip */
.home-stats {
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.home-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(13, 44, 84, 0.15);
    overflow: hidden;
    border: 1px solid #e8eef5;
}

.home-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #eef2f7;
    transition: background 0.3s;
}

.home-stat:last-child { border-right: none; }

.home-stat:hover { background: #f8fafc; }

.home-stat .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0d2c54;
    line-height: 1.1;
}

.home-stat .num span { color: #ffc107; }

.home-stat .label {
    font-size: 0.85rem;
    color: #5c6b7a;
    font-weight: 600;
    margin-top: 6px;
}

/* Excellence promo — school branding */
.home-excellence-wrap {
    padding: 70px 0;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.home-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.home-section-head .tag {
    display: inline-block;
    background: rgba(13, 44, 84, 0.08);
    color: #0d2c54;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.home-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0d2c54;
    margin: 0 0 10px;
}

.home-section-head p {
    color: #5c6b7a;
    margin: 0;
}

.excellence-video-promo {
    --evp-primary: #0d2c54;
    --evp-secondary: #1a5276;
    --evp-accent: #ffc107;
    --evp-highlight: #ffe082;
    --evp-text-light: #ffffff;
    --evp-text-dark: #0d2c54;
    --evp-height: 480px;
    max-width: 1200px;
    margin: 0 auto;
    height: var(--evp-height);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(13, 44, 84, 0.2);
    border: none;
}

.evp-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--evp-primary), var(--evp-secondary));
    animation: evp-gradient-shift 18s ease infinite;
    background-size: 200% 200%;
    z-index: 1;
}

.evp-background .bokeh-light {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: evp-bokeh-move 28s infinite alternate;
}

.evp-background .bokeh-light.light-2 {
    width: 280px;
    height: 280px;
    top: 55%;
    left: 75%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation-duration: 22s;
}

.evp-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.evp-world {
    width: 100%;
    height: 600%;
    animation: evp-scroll-world 60s infinite ease-in-out;
}

.evp-scene {
    width: 100%;
    height: 16.666%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
    color: var(--evp-text-light);
    text-align: center;
}

@keyframes evp-scroll-world {
    0%, 15% { transform: translateY(0%); }
    16.6%, 31.6% { transform: translateY(-16.666%); }
    33.3%, 48.3% { transform: translateY(-33.332%); }
    50%, 65% { transform: translateY(-49.998%); }
    66.6%, 81.6% { transform: translateY(-66.664%); }
    83.3%, 100% { transform: translateY(-83.330%); }
}

@keyframes evp-scene-1-content {
    0%, 15% { opacity: 1; transform: translateY(0); }
    16.6%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes evp-scene-2-content {
    0%, 15% { opacity: 0; transform: translateY(20px); }
    16.6%, 31.6% { opacity: 1; transform: translateY(0); }
    33.3%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes evp-scene-3-content {
    0%, 31.6% { opacity: 0; transform: translateY(20px); }
    33.3%, 48.3% { opacity: 1; transform: translateY(0); }
    50%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes evp-scene-4-content {
    0%, 48.3% { opacity: 0; transform: translateY(20px); }
    50%, 65% { opacity: 1; transform: translateY(0); }
    66.6%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes evp-scene-5-content {
    0%, 65% { opacity: 0; transform: translateY(20px); }
    66.6%, 81.6% { opacity: 1; transform: translateY(0); }
    83.3%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes evp-scene-6-content {
    0%, 81.6% { opacity: 0; transform: scale(0.95); }
    83.3%, 100% { opacity: 1; transform: scale(1); }
}

.evp-scene-1 .evp-content { animation: evp-scene-1-content 60s infinite ease-in-out; }
.evp-scene-2 .evp-content { animation: evp-scene-2-content 60s infinite ease-in-out; }
.evp-scene-3 .evp-content { animation: evp-scene-3-content 60s infinite ease-in-out; }
.evp-scene-4 .evp-content { animation: evp-scene-4-content 60s infinite ease-in-out; }
.evp-scene-5 .evp-content { animation: evp-scene-5-content 60s infinite ease-in-out; }
.evp-scene-6 .evp-content { animation: evp-scene-6-content 60s infinite ease-in-out; }

@keyframes evp-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes evp-bokeh-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-80px, 40px); }
}

.evp-school-name {
    font-size: 0.95rem;
    color: var(--evp-highlight);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.evp-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin: 8px 0;
}

h2.evp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 12px;
}

.evp-intro-p { font-size: 1.1rem; line-height: 1.7; max-width: 720px; opacity: 0.95; }

.evp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 900px;
}

.evp-grid-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.evp-grid-item h3 { color: #ffc107; font-size: 1rem; margin: 0 0 6px; }
.evp-grid-item p { color: #eee; font-size: 0.85rem; margin: 0; }

.evp-fee-table {
    width: 90%;
    max-width: 640px;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
}

.evp-fee-table td,
.evp-fee-table th {
    padding: 0.9rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.evp-fee-table th { background: rgba(0, 0, 0, 0.25); }

.evp-savings-cell {
    background: #ffc107;
    color: #0d2c54;
    font-weight: 800;
}

.evp-final-call {
    background: linear-gradient(135deg, #ffc107, #ffe082);
    color: #0d2c54;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.evp-final-call h2 { font-size: 2rem; margin: 0 0 8px; }

.evp-cta-button {
    display: inline-block;
    background: #0d2c54;
    color: #fff;
    padding: 12px 28px;
    margin-top: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.evp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Welcome block */
.home-welcome {
    padding: 90px 0;
    background: #fff;
}

.home-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.home-welcome-visual {
    position: relative;
}

.home-welcome-visual img {
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(13, 44, 84, 0.18);
    width: 100%;
}

.home-welcome-visual::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffc107, #ffda6a);
    border-radius: 20px;
    z-index: -1;
}

.home-welcome-visual .experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #0d2c54;
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.experience-badge strong {
    display: block;
    font-size: 1.8rem;
    color: #ffc107;
    line-height: 1;
}

.experience-badge span { font-size: 0.78rem; opacity: 0.9; }

.home-welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: #0d2c54;
    margin: 0 0 16px;
}

.home-welcome-content .divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #0d2c54);
    border-radius: 2px;
    margin-bottom: 22px;
}

.home-welcome-content p {
    color: #5c6b7a;
    margin: 0 0 16px;
    line-height: 1.85;
}

.home-welcome-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Quick pillars */
.home-pillars {
    padding: 70px 0;
    background: #0d2c54;
    color: #fff;
}

.home-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-pillar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 22px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    display: block;
}

.home-pillar:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: #ffc107;
    transform: translateY(-6px);
    color: #fff;
}

.home-pillar i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 14px;
}

.home-pillar h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.home-pillar p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* Features — enhanced */
.home-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid #e8eef5;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d2c54, #ffc107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.home-feature-card:hover::before { transform: scaleX(1); }

.home-feature-card:hover {
    box-shadow: 0 20px 50px rgba(13, 44, 84, 0.12);
    transform: translateY(-8px);
}

.home-feature-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d2c54, #1a5276);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.home-feature-card h3 {
    margin: 0 0 10px;
    color: #0d2c54;
    font-size: 1.1rem;
}

.home-feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #5c6b7a;
    line-height: 1.65;
}

/* News — cards */
.home-news {
    padding: 80px 0;
    background: #fff;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 30px rgba(13, 44, 84, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.home-news-card:hover {
    box-shadow: 0 20px 50px rgba(13, 44, 84, 0.12);
    transform: translateY(-6px);
}

.home-news-card-header {
    background: linear-gradient(135deg, #0d2c54, #1a5276);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.home-news-date {
    background: #fff;
    color: #0d2c54;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    min-width: 56px;
    flex-shrink: 0;
}

.home-news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.home-news-date .mon {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

.home-news-card-header h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

.home-news-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-news-card-body p {
    margin: 0 0 14px;
    color: #5c6b7a;
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.home-news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px;
    background: #f8fafc;
    border-radius: 16px;
    color: #5c6b7a;
}

/* CTA banner */
.home-cta {
    padding: 0 20px 80px;
}

.home-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d2c54 0%, #1a5276 50%, #0d2c54 100%);
    border-radius: 24px;
    padding: 50px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 44, 84, 0.25);
}

.home-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent 70%);
    border-radius: 50%;
}

.home-cta-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

.home-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 10px;
}

.home-cta-text p {
    margin: 0;
    opacity: 0.9;
    max-width: 520px;
}

.home-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .home-hero .container { grid-template-columns: 1fr; text-align: center; }
    .home-hero-lead { margin-left: auto; margin-right: auto; }
    .home-hero-actions { justify-content: center; }
    .home-hero-card { max-width: 400px; margin: 0 auto; }
    .home-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .home-stat:nth-child(2) { border-right: none; }
    .home-stat:nth-child(1),
    .home-stat:nth-child(2) { border-bottom: 1px solid #eef2f7; }
    .home-welcome-grid { grid-template-columns: 1fr; }
    .home-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .home-features-grid { grid-template-columns: repeat(2, 1fr); }
    .home-news-grid { grid-template-columns: 1fr; }
    .evp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .home-hero { min-height: auto; padding: 48px 0 60px; }
    .home-stats { margin-top: -24px; }
    .home-stats-inner { grid-template-columns: 1fr; }
    .home-stat { border-right: none !important; border-bottom: 1px solid #eef2f7; }
    .home-stat:last-child { border-bottom: none; }
    :root { --evp-height: 580px; }
    .excellence-video-promo { --evp-height: 580px; border-radius: 14px; }
    .home-pillars-grid,
    .home-features-grid { grid-template-columns: 1fr; }
    .home-cta-inner { padding: 36px 24px; flex-direction: column; text-align: center; }
    .home-cta-actions { justify-content: center; }
    .evp-grid { grid-template-columns: 1fr; }
}

/* ——— डायनामिक अलर्ट, छुट्टियाँ, मोडल ——— */
.badge-open {
    background: #28a745;
    color: #fff;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
}

.home-alerts {
    background: linear-gradient(90deg, #8b0000, #c0392b);
    padding: 10px 0;
}

.home-alerts-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.home-alert-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.25);
    max-width: 90vw;
}

.home-alert-chip:hover { background: rgba(255,255,255,0.25); color: #fff; }

.home-holidays {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid #e8eef5;
}

.home-holidays-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.home-holidays-head h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #0d2c54;
}

.home-holidays-head a {
    color: #1a5276;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.home-holidays-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.holiday-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f7fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 18px;
}

.holiday-date {
    font-weight: 800;
    color: #0d2c54;
    text-align: center;
    line-height: 1.1;
}

.holiday-date small { display: block; font-size: 0.7rem; font-weight: 600; color: #5c6b7a; }

.holiday-reason { font-weight: 600; color: #333; }

.home-vacancies {
    padding: 70px 0;
    background: #f8fafc;
}

.home-vacancy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.home-vacancy-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    border-top: 4px solid #ffc107;
    box-shadow: 0 8px 24px rgba(13,44,84,0.08);
}

.home-vacancy-card h3 { margin: 0 0 10px; color: #0d2c54; font-size: 1.05rem; }

.vacancy-deadline {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #c0392b;
    font-weight: 600;
}

.home-stat-icon {
    display: block;
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 6px;
}

a.home-stat {
    text-decoration: none;
    color: inherit;
}

a.home-stat:hover { background: #f0f6ff; }

.news-urgent-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc3545;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.home-news-card { position: relative; cursor: pointer; }

.news-read-more {
    color: #0d2c54;
    font-weight: 700;
    font-size: 0.85rem;
}

.evp-pause-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    cursor: pointer;
}

.evp-pause-btn:hover { background: #ffc107; color: #0d2c54; }

/* मोडल (समाचार / गैलरी) */
.public-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.public-modal[hidden] { display: none; }

.public-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13,44,84,0.75);
    backdrop-filter: blur(4px);
}

.public-modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.public-modal-box--media { max-width: 720px; text-align: center; }

.public-modal-box--media img {
    max-width: 100%;
    border-radius: 10px;
    max-height: 60vh;
    object-fit: contain;
}

.public-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.public-modal-date {
    font-size: 0.85rem;
    color: #5c6b7a;
    margin: 0 0 8px;
}

.public-modal-body { line-height: 1.8; color: #444; }

.loading-text { text-align: center; color: #5c6b7a; }

@media (prefers-reduced-motion: reduce) {
    .evp-world,
    .evp-scene-1 .evp-content,
    .evp-scene-2 .evp-content,
    .evp-scene-3 .evp-content,
    .evp-scene-4 .evp-content,
    .evp-scene-5 .evp-content,
    .evp-scene-6 .evp-content,
    .notification-bar p {
        animation: none !important;
    }
}
