/* Custom CSS for Samyak IAS - ops_custom.css */

/* ==========================================
   1. WHY SAMYAK SECTION STYLES
   ========================================== */
.why-samyak-sec {
    background-color: #fcf9f5 !important;
    /* Elegant warm soft off-white background */
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-samyak-sec::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(229, 27, 35, 0.04);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.why-samyak-sec::after {
    content: "";
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: rgba(28, 43, 68, 0.03);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.why-badge-pulse {
    background: rgba(229, 27, 35, 0.06) !important;
    border: 1px solid rgba(229, 27, 35, 0.12) !important;
    color: #e51b23 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.03);
}

.why-badge-pulse .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #e51b23;
    border-radius: 50%;
    animation: why-pulse 2s infinite;
}

@keyframes why-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(229, 27, 35, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(229, 27, 35, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(229, 27, 35, 0);
    }
}

.why-header-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    color: #1c2b44;
}

.why-feature-card {
    background: #ffffff !important;
    border: 1px solid rgba(28, 43, 68, 0.05) !important;
    border-radius: 20px !important;
    padding: 15px 20px !important;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 8px 30px rgba(28, 43, 68, 0.02) !important;
}

.why-feature-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(229, 27, 35, 0.18) !important;
    box-shadow: 0 20px 40px rgba(28, 43, 68, 0.06) !important;
}

.why-icon-box {
    width: 140px;
    height: 90px;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.08) 0%, rgba(229, 27, 35, 0.02) 100%) !important;
    border: 1px solid rgba(229, 27, 35, 0.1) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 24px; */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #e51b23;
}



.why-result-box {
    background: #ffffff !important;
    border: 1px solid rgba(28, 43, 68, 0.06) !important;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(28, 43, 68, 0.03) !important;
}

.why-result-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #e51b23, #f0545b);
}

.why-result-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 27, 35, 0.08) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e51b23;
}

.why-btn-red {
    background: linear-gradient(135deg, #e51b23, #f0545b) !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-btn-red:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(229, 27, 35, 0.3) !important;
}

.why-btn-outline {
    border: 2px solid #1c2b44 !important;
    color: #1c2b44 !important;
    background: transparent !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-btn-outline:hover {
    background: #1c2b44 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(28, 43, 68, 0.15) !important;
}

/* ==========================================
   2. QUICK LINKS SECTION STYLES
   ========================================== */
.quick-links-sec {
    background-color: #f8fafc !important;
    padding: 24px 0 44px !important;
    position: relative;
}

@media (max-width: 768px) {
    .quick-links-sec {
        padding: 20px 0 32px !important;
    }
}

/* ----- Section header (eyebrow + title + sub) ----- */
.quick-links-sec .ql-section-head {
    max-width: 720px;
    margin: 0 auto 24px;
}
@media (max-width: 768px) {
    .quick-links-sec .ql-section-head { margin-bottom: 20px; }
}
.quick-links-sec .ql-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #e51b23;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(229, 27, 35, 0.06);
    border: 1px solid rgba(229, 27, 35, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.quick-links-sec .ql-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #0f172a;
    margin: 0 0 8px;
}
@media (max-width: 768px) {
    .quick-links-sec .ql-section-title { font-size: 24px; }
}
.quick-links-sec .ql-section-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 768px) {
    .quick-links-sec .ql-section-sub { font-size: 14px; }
}

.quick-link-card {
    background: #ffffff !important;
    border: 1px solid rgba(28, 43, 68, 0.05) !important;
    border-radius: 20px !important;
    padding: 24px 16px !important;
    /* Beautiful tighter, premium padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 30px rgba(28, 43, 68, 0.04) !important;
}

@media (max-width: 768px) {
    .quick-link-card {
        padding: 20px 12px !important;
    }
}

.quick-link-card .ql-icon-box {
    width: 56px;
    /* Compact icon container */
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    /* Optimized bottom margin */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-link-card .ql-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 15px;
    /* Tighter modern font size */
    font-weight: 700;
    color: #1c2b44;
    margin-bottom: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Specific Card Color Variations (Vibrant and Premium) */

/* 1. Daily News (Blue) */
.ql-blue .ql-icon-box {
    background: rgba(13, 110, 253, 0.06) !important;
    color: #0d6efd !important;
}

.ql-blue:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(13, 110, 253, 0.2) !important;
    box-shadow: 0 16px 36px rgba(13, 110, 253, 0.08) !important;
}

/* 2. IAS Mains (Coral/Red) */
.ql-red .ql-icon-box {
    background: rgba(229, 27, 35, 0.06) !important;
    color: #e51b23 !important;
}

.ql-red:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(229, 27, 35, 0.2) !important;
    box-shadow: 0 16px 36px rgba(229, 27, 35, 0.08) !important;
}

/* 3. Mind Maps (Purple) */
.ql-purple .ql-icon-box {
    background: rgba(111, 66, 193, 0.06) !important;
    color: #6f42c1 !important;
}

.ql-purple:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(111, 66, 193, 0.2) !important;
    box-shadow: 0 16px 36px rgba(111, 66, 193, 0.08) !important;
}

/* 4. IAS Prelims (Green) */
.ql-green .ql-icon-box {
    background: rgba(25, 135, 84, 0.06) !important;
    color: #198754 !important;
}

.ql-green:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(25, 135, 84, 0.2) !important;
    box-shadow: 0 16px 36px rgba(25, 135, 84, 0.08) !important;
}

/* 5. RAS Prelims (Gold/Amber) */
.ql-orange .ql-icon-box {
    background: rgba(255, 193, 7, 0.08) !important;
    color: #ffc107 !important;
}

.ql-orange:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
    box-shadow: 0 16px 36px rgba(255, 193, 7, 0.1) !important;
}

.ql-orange:hover .ql-icon-box {
    background: #ffc107 !important;
    color: #ffffff !important;
    transform: scale(1.05) rotate(8deg);
}

/* ==========================================
   6. INTERACTIVE RIGHT SOCIAL SLIDE-OUT TAB
   ========================================== */
.social-slide-wrapper {
    position: fixed;
    right: -60px;
    /* Hide panel off-screen by default */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    /* Ensure it stays above main content but below modal overlays if needed */
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-slide-wrapper.open {
    right: 0;
    /* Slide panel into view */
}

/* Toggle Button sticking out to the left */
.social-toggle-btn {
    position: absolute;
    left: -42px;
    /* Pull button left to expose it on screen edge */
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 140px;
    background: #e51b23 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px 0 0 10px !important;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 4px !important;
    box-shadow: -4px 2px 12px rgba(229, 27, 35, 0.25) !important;
    transition: all 0.3s ease;
}

.social-toggle-btn i {
    font-size: 16px;
    animation: social-shake 3s infinite;
}

@keyframes social-shake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }
}

.social-toggle-btn span {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

/* Social Panel background and wrapper */
.social-slide-panel {
    width: 60px;
    background: #1c2b44;
    /* Premium dark navy */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 25px rgba(28, 43, 68, 0.2);
}

/* Social Link style */
.social-slide-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 18px;
    text-decoration: none !important;
    border-radius: 8px;
    margin: 6px 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-slide-link .ssl-x-svg {
    width: 17px;
    height: 17px;
    display: block;
}

/* Platform Specific Hover Effects */
.ssl-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #ffffff !important;
    transform: scale(1.15) translateX(-3px);
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.ssl-facebook:hover {
    background: #1877f2;
    color: #ffffff !important;
    transform: scale(1.15) translateX(-3px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.ssl-youtube:hover {
    background: #ff0000;
    color: #ffffff !important;
    transform: scale(1.15) translateX(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.ssl-twitter:hover {
    background: #000000;
    color: #ffffff !important;
    transform: scale(1.15) translateX(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ssl-whatsapp:hover {
    background: #25d366;
    color: #ffffff !important;
    transform: scale(1.15) translateX(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive scaling for the slide-out social panel */
@media (max-width: 576px) {
    .social-toggle-btn {
        width: 36px;
        height: 120px;
        left: -36px;
    }

    .social-toggle-btn span {
        font-size: 9px;
    }

    .social-slide-panel {
        width: 50px;
    }

    .social-slide-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .social-slide-wrapper {
        right: -50px;
    }
}

/* ==========================================
   7. FLOATING WHATSAPP CHAT BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    z-index: 1040;
    /* Stays floating on top */
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp i {
    font-size: 32px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a !important;
    color: #ffffff !important;
}

.floating-whatsapp:hover i {
    transform: scale(1.05);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsive scaling for floating WhatsApp button */
@media (max-width: 576px) {
    .floating-whatsapp {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp i {
        font-size: 26px;
    }
}

/* ==========================================
   8. WEB STORIES VIDEOS SLIDER SECTION
   ========================================== */
.web-story-sec {
    background-color: #ffffff !important;
    padding: 40px 0 !important;
}

@media (max-width: 768px) {
    .web-story-sec {
        padding: 50px 0 !important;
    }
}

.story-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 43, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #000;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 27, 35, 0.15);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 2;
}

.story-badge {
    align-self: flex-start;
    background: rgba(229, 27, 35, 0.95);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(229, 27, 35, 0.3);
}

.story-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: story-pulse-dot 1.5s infinite;
}

@keyframes story-pulse-dot {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.story-info {
    color: #ffffff;
}

.story-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sleek Actions Bar on Top Right */
.story-actions-bar {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.story-card .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.story-card .action-btn:hover {
    background: #e51b23 !important;
    border-color: #e51b23 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 15px rgba(229, 27, 35, 0.4) !important;
}

.story-card .action-btn.youtube-btn:hover {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
}

/* Glassmorphic Play/Pause Button in Center */
.play-pause-btn {
    display: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    z-index: 10;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.story-card:hover .play-pause-btn {
    opacity: 0.9;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.story-card.paused .play-pause-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: play-pulse 2s infinite !important;
}

@keyframes play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Card Title styling */
.story-card .story-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Styling for the View All Stories button */
.web-story-sec .rts-btn.with-arrow {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #e51b23 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.web-story-sec .rts-btn.with-arrow:hover {
    color: #1c2b44 !important;
    transform: translateX(4px);
}

/* 3D Centered Focus Coverflow Effect for Web Stories Swiper */
.web-stories-swiper {
    overflow: visible !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.web-stories-swiper .swiper-slide {
    transform: scale(0.85) !important;
    opacity: 0.55 !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.6s ease !important;
    z-index: 1 !important;
}

.web-stories-swiper .swiper-slide-active {
    transform: scale(1.1) !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

/* ==========================================
   9. AI RANK FAQ ACCORDION SECTION (Light Theme)
   ========================================== */
.ai-faq-sec {
    background-color: #f8f9fa !important;
    padding: 80px 0 !important;
    color: #1c2b44 !important;
    border-top: 1px solid rgba(229, 27, 35, 0.05);
}

@media (max-width: 768px) {
    .ai-faq-sec {
        padding: 50px 0 !important;
    }
}

.ai-faq-sec .accordion-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 43, 68, 0.02) !important;
}

.ai-faq-sec .accordion-item:hover {
    background: #ffffff !important;
    border-color: rgba(229, 27, 35, 0.25) !important;
    box-shadow: 0 8px 24px rgba(229, 27, 35, 0.05) !important;
}

.ai-faq-sec .accordion-button {
    background: transparent !important;
    color: #1c2b44 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.ai-faq-sec .accordion-button::after {
    display: none !important;
    /* Hide default icon */
}

.ai-faq-sec .accordion-button .faq-icon {
    font-size: 14px;
    color: #4a5568;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ai-faq-sec .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
    color: #e51b23 !important;
}

.ai-faq-sec .accordion-button:not(.collapsed) {
    color: #e51b23 !important;
}

.ai-faq-sec .accordion-body {
    padding: 0 24px 20px 24px !important;
    color: #4a5568 !important;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #edf2f7 !important;
}

.ai-faq-badge {
    background: rgba(229, 27, 35, 0.08) !important;
    border: 1px solid rgba(229, 27, 35, 0.15) !important;
    color: #e51b23 !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    display: inline-block;
}

/* ==========================================
   10. PREMIUM HERO SECTION STYLES
   ========================================== */
.hero-pre-title {
    background: rgba(229, 27, 35, 0.06) !important;
    border: 1px solid rgba(229, 27, 35, 0.15) !important;
    color: #e51b23 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-pre-title .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #e51b23;
    border-radius: 50%;
    animation: why-pulse 2s infinite;
}

.hero-gradient-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #1c2b44 !important;
}

.hero-gradient-title span {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a5568 !important;
    line-height: 1.6;

}

.hero-feature-card {
    background: #ffffff !important;
    border: 1px solid rgba(28, 43, 68, 0.06) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 43, 68, 0.02) !important;
}

.hero-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.15) !important;
    box-shadow: 0 10px 20px rgba(229, 27, 35, 0.05) !important;
}

.hero-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-feature-icon-wrapper.danger {
    background: rgba(229, 27, 35, 0.08) !important;
    color: #e51b23 !important;
}

.hero-feature-icon-wrapper.primary {
    background: rgba(13, 110, 253, 0.08) !important;
    color: #0d6efd !important;
}

.hero-feature-icon-wrapper.success {
    background: rgba(25, 135, 84, 0.08) !important;
    color: #198754 !important;
}

.hero-feature-icon-wrapper.warning {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffb007 !important;
}

.hero-feature-card h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1c2b44;
    margin-bottom: 2px;
}

.hero-feature-card span {
    font-size: 12px;
    color: #718096;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%) !important;
    border: none !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(229, 27, 35, 0.25) !important;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(229, 27, 35, 0.35) !important;
    color: #ffffff !important;
}

.hero-btn-secondary {
    border: 2px solid #1c2b44 !important;
    color: #1c2b44 !important;
    background: transparent !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.hero-btn-secondary:hover {
    background: #1c2b44 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 43, 68, 0.15) !important;
}

@media (max-width: 991px) {
    .hero-gradient-title {
        font-size: 34px;
    }
}

/* ------------------------------------------
   Hero section — alignment + form card polish
   ------------------------------------------ */

/* Trim section top whitespace so it sits flush under the navbar.
   Keep generous bottom space for breathing room before the next section. */
.hero-section {
    padding-top: 24px;
}
@media (max-width: 991px) {
    .hero-section {
        padding-top: 20px;
    }
}

/* Force left-alignment of the left column on desktop (Bootstrap text-lg-start
   isn't winning due to a higher-specificity rule elsewhere in style.css). */
@media (min-width: 992px) {
    .hero-section .col-lg-7 { text-align: left !important; }
    .hero-section .col-lg-7 .hero-pre-title,
    .hero-section .col-lg-7 .hero-gradient-title,
    .hero-section .col-lg-7 .hero-desc { text-align: left !important; }
    /* Actions stay left-aligned (not center) on desktop */
    .hero-section .col-lg-7 .d-flex.flex-wrap.justify-content-lg-center {
        justify-content: flex-start !important;
    }
}

/* Slight horizontal cap on the hero copy so the description doesn't span the
   whole 7-column width on very wide viewports — improves readability. */
.hero-section .hero-desc {
    max-width: 560px;
}
@media (max-width: 991px) {
    .hero-section .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Form card refinements — tighter, premium feel, with a colour accent strip on top */
.hero-form-card {
    padding: 28px 28px 24px !important;
    border-radius: 18px !important;
    box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.02),
        0 24px 48px -16px rgba(15, 23, 42, 0.16),
        0 8px 18px -10px rgba(229, 27, 35, 0.10) !important;
    position: relative;
    overflow: hidden;
}
.hero-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e51b23 0%, #ff7e3d 100%);
}
/* Embedded CRM iframe variant — let the form chrome flow to the edges of the
   card since the iframe brings its own padding/title/branding. Selector is
   .hero-section-scoped so it beats the more specific responsive rule above. */
.hero-section .hero-form-card.hero-form-card--embed {
    padding: 0 !important;
    overflow: hidden;
    max-width: 420px;
}
.hero-section .hero-form-card.hero-form-card--embed::before { display: none; }
.hero-section .hero-form-card--embed > iframe { display: block; }
.hero-form-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 6px !important;
}
.hero-form-card > p {
    font-size: 14px;
    color: #475569 !important;
    line-height: 1.5;
}

/* Inputs — match the form card aesthetic, with a clearer focus state */
.hero-form-card .form-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px !important;
}
.hero-form-card .form-control,
.hero-form-card .form-select {
    font-size: 15px !important;
    padding: 11px 14px !important;
    border-radius: 10px !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #fafbfc !important;
    color: #0f172a !important;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.hero-form-card .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: #e51b23 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(229, 27, 35, 0.10) !important;
    outline: none;
}

/* Submit button inside the form card — slightly tighter than hero-btn-primary */
.hero-form-card button.hero-btn-primary {
    padding: 13px 22px !important;
    font-size: 15px !important;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* ------------------------------------------
   Hero — trust micro-row + tighter form
   ------------------------------------------ */

/* Trust strip below CTAs (1650+ Selections · 12+ Years · ...) */
.hero-trust-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #475569;
}
.hero-trust-row .hero-trust-item strong {
    color: #0f172a;
    font-weight: 800;
    margin-right: 4px;
}
.hero-trust-row .hero-trust-dot {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .hero-trust-row { justify-content: center; }
}

/* Tighter feature cards (was padding 16px, now 14px with smaller icon chip) */
.hero-section .hero-feature-card {
    padding: 13px 14px !important;
    gap: 12px;
}
.hero-section .hero-feature-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 17px;
}

/* Form — compact rhythm */
.hero-form { display: block; }
.hero-form .hero-form-field { margin-bottom: 8px; }
.hero-form .hero-form-field:last-of-type { margin-bottom: 12px; }
.hero-form .form-label {
    display: block;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 4px !important;
}
.hero-form .form-control,
.hero-form .form-select {
    width: 100%;
    font-size: 13.5px !important;
    font-weight: 500;
    padding: 8px 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #fafbfc !important;
    color: #0f172a !important;
    border-radius: 8px !important;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    line-height: 1.3;
    height: auto;
    min-height: 0;
}
.hero-form .form-control::placeholder { color: #94a3b8; font-weight: 400; }
.hero-form .form-control:hover,
.hero-form .form-select:hover { border-color: #cbd5e1 !important; }
.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: #e51b23 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.10) !important;
    outline: none;
}

/* Submit + trust line — small */
.hero-form .hero-form-submit {
    padding: 10px 18px !important;
    font-size: 12.5px !important;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 8px !important;
}
.hero-form .hero-form-submit i { font-size: 11px; }
.hero-form .hero-form-trust {
    margin-top: 8px;
    font-size: 11px;
    color: #64748b;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.3;
}
.hero-form .hero-form-trust i {
    color: #16a34a;
    font-size: 10px;
}

/* Form card — much more compact */
.hero-section .hero-form-card {
    padding: 18px 20px 16px !important;
    border-radius: 14px !important;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section .hero-form-card::before { height: 3px; }
.hero-section .hero-form-card h3 {
    font-size: 16px !important;
    letter-spacing: -0.2px;
    margin-bottom: 2px !important;
    margin-top: 2px !important;
}
.hero-section .hero-form-card > p {
    font-size: 12px !important;
    margin-bottom: 12px !important;
    line-height: 1.4;
}

/* ==========================================
   10. WEB STORIES SWIPER CUSTOM PAGINATION
   ========================================== */
.web-stories-swiper .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}

.web-stories-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ccc !important;
    opacity: 0.5 !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin: 0 !important;
}

.web-stories-swiper .swiper-pagination-bullet-active {
    background: #e51b23 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 10px !important;
}

/* ==========================================
   11. SWIPE INDICATOR MICRO-ANIMATION
   ========================================== */
.swipe-indicator {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #8a9bb5 !important;
    background: rgba(28, 43, 68, 0.04) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    border: 1px dashed rgba(28, 43, 68, 0.15) !important;
    transition: all 0.3s ease !important;
}

.swipe-indicator i {
    animation: swipe-slide-anim 1.8s ease-in-out infinite !important;
    color: #e51b23 !important;
}

@keyframes swipe-slide-anim {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

/* ==========================================
   12. GLASSMORPHIC REELS SOUND TOGGLE BUTTON
   ========================================== */
.sound-toggle-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 10 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
    outline: none !important;
}

.sound-toggle-btn:hover {
    background: rgba(229, 27, 35, 0.9) !important;
    border-color: #e51b23 !important;
    transform: scale(1.1) !important;
    color: #ffffff !important;
}

.sound-toggle-btn i {
    font-size: 14px !important;
}

/* Premium Faculty Cards Styles */
.fac-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(28, 43, 68, 0.05) !important;
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(28, 43, 68, 0.02) !important;
}

.fac-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 32px rgba(229, 27, 35, 0.06) !important;
    border-color: rgba(229, 27, 35, 0.12) !important;
}

.fac-img-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: #ffffff;
    border: 1px solid rgba(229, 27, 35, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .fac-img-wrapper {
        width: 95px;
        height: 95px;
        padding: 4px;
    }
}

.fac-card:hover .fac-img-wrapper {
    border-color: #e51b23;
    box-shadow: 0 8px 20px rgba(229, 27, 35, 0.15);
    transform: translateY(-1px) scale(1.03);
}

.fac-photo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .fac-photo {
        width: 85px;
        height: 85px;
    }
}

.fac-card:hover .fac-photo {
    transform: scale(1.04);
}

.fac-name {

    font-weight: 700 !important;
    color: #1c2b44 !important;
    transition: color 0.3s ease;
}

.fac-card:hover .fac-name {
    color: #e51b23 !important;
}

@media (min-width: 768px) {
    .fac-name {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }
}





.fac-exp i {
    color: #e51b23 !important;
    font-size: 11px !important;
}

/* ------------------------------------------
   Our Results (achievements-section) — refined layout
   Original h6 was 90px to fit short Hindi text;
   resize for English content + polish the section.
   ------------------------------------------ */
.achievements-section {
    padding: 48px 0 56px !important;
    width: 100% !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
}
.achievements-section .container { max-width: 1140px; }

.achievements-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.6px;
    padding: 0 0 8px !important;
    margin-bottom: 28px !important;
    color: #0f172a !important;
}
@media (max-width: 768px) {
    .achievements-title { font-size: 26px !important; margin-bottom: 20px !important; }
}

.achievements-section .row { align-items: center !important; }

/* Image column */
.achievements-section .col-lg-7 img,
.achievements-section .achievements-col-image img {
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.18);
}

/* Right column — resize the giant h6 */
.achievements-text-content h6 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.4px !important;
    color: #0f172a !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
    font-weight: 800 !important;
}
.achievements-text-content h6 span,
.achievements-text-content h6 strong {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media only screen and (max-width: 991px) {
    .achievements-text-content h6 { font-size: 28px !important; padding-top: 8px !important; }
}
@media only screen and (max-width: 767px) {
    .achievements-text-content h6 {
        font-size: 26px !important;
        padding-top: 12px !important;
        text-align: center;
    }
}

/* Result bullet list */
.achievements-list-custom { padding: 0 !important; margin: 0 !important; }
.achievements-list-custom li {
    font-size: 15px !important;
    color: #1c2b44 !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.achievements-list-icon { color: #e51b23 !important; font-size: 18px !important; }

/* CTA button — modern pill, brand red */
.achievements-btn-custom {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    height: auto !important;
    padding: 12px 22px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%) !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px -4px rgba(229, 27, 35, 0.4);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease !important;
    margin-top: 14px !important;
}
.achievements-btn-custom:hover {
    color: #fff !important;
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 24px -6px rgba(229, 27, 35, 0.5);
}
.achievements-btn-custom::after {
    content: "→";
    font-size: 16px;
    line-height: 1;
}

/* ------------------------------------------
   Minimal footer
   Clean grid, plain text, no card chrome, generous whitespace.
   ------------------------------------------ */
.samyak-footer-minimal {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 56px !important;
    align-items: start !important;
}
@media (max-width: 991px) { .samyak-footer-minimal { grid-template-columns: 1fr 1fr; gap: 40px !important; } }
@media (max-width: 575px) { .samyak-footer-minimal { grid-template-columns: 1fr; gap: 32px !important; } }

.samyak-foot-col { min-width: 0; }

/* Column titles */
.samyak-foot-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 0 0 18px;
}

/* Brand column */
.samyak-foot-logo { display: inline-block; margin-bottom: 18px; }
.samyak-foot-logo img { height: 44px; width: auto; display: block; }
.samyak-foot-intro {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 340px;
}

/* Social icons — minimal, no backgrounds */
.samyak-foot-social { display: flex; gap: 18px; }
.samyak-foot-social a {
    color: rgba(255, 255, 255, 0.50) !important;
    font-size: 15px;
    text-decoration: none !important;
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-block;
}
.samyak-foot-social a:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* List columns */
.samyak-foot-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}
.samyak-foot-list li {
    list-style: none !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
}
.samyak-foot-list li:last-child { margin-bottom: 0 !important; }
.samyak-foot-list li a {
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    font-size: 13.5px;
    line-height: 1.4;
    transition: color 0.15s ease;
    display: inline-block;
    padding: 0 !important;
}
.samyak-foot-list li a:hover { color: #fff !important; }
.samyak-foot-list--contact li a { font-weight: 500; }
.samyak-foot-list .samyak-foot-meta {
    color: rgba(255, 255, 255, 0.40);
    font-size: 12.5px;
    margin-top: 6px !important;
}

/* Centres — plain text */
.samyak-foot-centre {
    margin-bottom: 18px;
}
.samyak-foot-centre:last-child { margin-bottom: 0; }
.samyak-foot-centre strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.35;
}
.samyak-foot-centre span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 6px;
}
.samyak-foot-centre a {
    color: #ff6b71 !important;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.samyak-foot-centre a:hover { color: #ff8a8e !important; }

/* Enrol CTA — slim outline pill */
.samyak-foot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    margin-top: 18px;
}
.samyak-foot-cta:hover {
    background: #e51b23;
    border-color: #e51b23;
    color: #fff !important;
}

/* ------------------------------------------
   Featured Courses section — clean card swiper
   ------------------------------------------ */
.featured-courses-sec {
    background: #fdfbf8;
    padding: 56px 0;
}
@media (max-width: 768px) { .featured-courses-sec { padding: 40px 0; } }

.featured-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.featured-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #e51b23;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #0f172a;
    margin: 0 0 8px;
}
@media (max-width: 768px) { .featured-title { font-size: 24px; } }
.featured-sub {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    max-width: 560px;
}
.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid #0f172a;
    color: #0f172a !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}
.featured-view-all:hover {
    background: #e51b23;
    color: #fff !important;
    border-color: #e51b23;
    transform: translateY(-1px);
}
.featured-view-all i { font-size: 11px; }

/* Swiper container */
.featured-courses-swiper-wrap { position: relative; }
.featured-courses-swiper {
    padding-bottom: 50px !important;
}
.featured-courses-swiper .swiper-slide { height: auto; }

/* Course card — larger, more breathing room */
.fc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    height: 100%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
}
.fc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 27, 35, 0.20);
    box-shadow: 0 24px 50px -18px rgba(229, 27, 35, 0.22);
}

.fc-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
}
.fc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fc-card:hover .fc-card-thumb img { transform: scale(1.06); }

.fc-card-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(229, 27, 35, 0.08);
    color: #e51b23;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 999px;
    margin: 0 0 -4px;
    line-height: 1.4;
}

.fc-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.fc-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    color: #0f172a;
    margin: 0;
    /* clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}
.fc-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}
.fc-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}
.fc-meta-pill i { font-size: 11px; color: #e51b23; }
.fc-card-cta {
    margin-top: auto;
    padding-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e51b23;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: gap 0.18s ease;
}
.fc-card:hover .fc-card-cta { gap: 12px; }
.fc-card-cta i { font-size: 12px; }

/* Swiper navigation */
.featured-courses-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.featured-courses-nav .swiper-button-prev,
.featured-courses-nav .swiper-button-next {
    position: static !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 50%;
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.10);
    color: #0f172a !important;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.featured-courses-nav .swiper-button-prev::after,
.featured-courses-nav .swiper-button-next::after {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: inherit;
}
.featured-courses-nav .swiper-button-prev:hover,
.featured-courses-nav .swiper-button-next:hover {
    background: #e51b23 !important;
    color: #fff !important;
    border-color: #e51b23;
}
.featured-courses-nav .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.featured-courses-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(15, 23, 42, 0.25) !important;
    opacity: 1 !important;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
    margin: 0 !important;
}
.featured-courses-nav .swiper-pagination-bullet-active {
    background: #e51b23 !important;
    width: 24px;
}

/* ===========================================================
   ABOUT SAMYAK PAGE — modernised layout
   =========================================================== */

/* ---------- Hero ---------- */
.about-hero {
    position: relative;
    padding: 64px 0 56px;
    background: linear-gradient(135deg, #1c2b44 0%, #0f172a 100%);
    color: #fff;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
       radial-gradient(circle at 10% 20%, rgba(229, 27, 35, 0.18) 0%, transparent 40%),
       radial-gradient(circle at 90% 80%, rgba(255, 126, 61, 0.12) 0%, transparent 45%);
}
.about-hero-content { position: relative; z-index: 1; max-width: 760px; }
.about-hero-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 14px;
}
.about-hero-crumbs a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s ease; }
.about-hero-crumbs a:hover { color: #fff; }
.about-hero-crumbs span { color: #ff8a8e; font-weight: 600; }
.about-hero-crumbs i { font-size: 9px; opacity: 0.6; }
.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 14px;
    color: #fff;
}
.about-hero-title span {
    background: linear-gradient(135deg, #ff4b51 0%, #ff7e3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero .about-hero-sub,
.about-hero p.about-hero-sub {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.6 !important;
    max-width: 640px;
    margin: 0;
}

/* ---------- Stats strip ---------- */
.about-stats {
    background: #fff;
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 48px -16px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.04);
}
@media (max-width: 768px) { .about-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.about-stat {
    padding: 26px 18px;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}
.about-stat:last-child { border-right: none; }
@media (max-width: 768px) {
    .about-stat:nth-child(2) { border-right: none; }
    .about-stat:nth-child(1), .about-stat:nth-child(2) { border-bottom: 1px solid rgba(15, 23, 42, 0.06); }
}
.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}
.about-stat-num span {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-stat-label {
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ---------- Common: eyebrow + title ---------- */
.about-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #e51b23;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}

/* ---------- Intro ---------- */
.about-intro { padding: 64px 0 36px; background: #ffffff; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 992px) { .about-intro-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 6px 0 0;
}
.about-quote {
    background: linear-gradient(135deg, #fef4e8 0%, #fde4cd 100%);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(229, 27, 35, 0.06);
    position: relative;
}
.about-quote-mark { font-size: 28px; color: rgba(229, 27, 35, 0.30); margin-bottom: 12px; }
.about-quote p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}
.about-quote-by { font-size: 13px; color: #e51b23; font-weight: 700; letter-spacing: 0.4px; }

/* ---------- Feature cards ---------- */
.about-features { padding: 32px 0 64px; background: #ffffff; }
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) { .about-features-grid { grid-template-columns: 1fr; gap: 18px; } }
.about-feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
}
.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.2);
    box-shadow: 0 20px 40px -16px rgba(229, 27, 35, 0.18);
}
.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef4e8 0%, #fde4cd 100%);
    color: #e51b23;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%);
    color: #fff;
}
.about-feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.about-feature-card p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-feature-list li {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}
.about-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #e51b23;
    border-radius: 50%;
}

/* ---------- Goals & principles tabs ---------- */
.about-goals { padding: 64px 0; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.about-goals-head { text-align: center; margin-bottom: 32px; }

.about-goals-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    border: none !important;
    margin-bottom: 28px;
}
.about-goals-nav .nav-item { margin: 0; }
.about-goals-nav .nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 22px !important;
    border: 1.5px solid rgba(15, 23, 42, 0.10) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #475569 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.18s ease !important;
    cursor: pointer;
}
.about-goals-nav .nav-link i { font-size: 13px; color: #94a3b8; transition: color 0.18s ease; }
.about-goals-nav .nav-link:hover { border-color: rgba(229, 27, 35, 0.25) !important; color: #0f172a !important; }
.about-goals-nav .nav-link.active {
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 18px -6px rgba(229, 27, 35, 0.45);
}
.about-goals-nav .nav-link.active i { color: #fff; }

.about-goals-content {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.08);
    max-width: 880px;
    margin: 0 auto;
}
@media (max-width: 768px) { .about-goals-content { padding: 24px 22px; } }
.about-goals-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 14px;
}
.about-goals-content p:last-child { margin-bottom: 0; }
.about-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.55;
}
.about-mission-list li i {
    color: #e51b23;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- Toppers swiper ---------- */
.about-toppers { padding: 64px 0; background: #ffffff; }
.about-toppers-head { text-align: center; margin-bottom: 36px; }
.about-toppers-swiper { position: relative; padding-bottom: 52px !important; }
.about-toppers-swiper .swiper-slide { height: auto; }

.about-topper-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.about-topper-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.18);
    box-shadow: 0 18px 40px -16px rgba(229, 27, 35, 0.16);
}
.about-topper-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: 14px;
}
.about-topper-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.65;
    margin: 0 0 18px;
    flex-grow: 1;
}
.about-topper-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.about-topper-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(229, 27, 35, 0.15);
    flex-shrink: 0;
}
.about-topper-author strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}
.about-topper-author span {
    display: block;
    font-size: 12px;
    color: #e51b23;
    font-weight: 600;
    margin-top: 1px;
    letter-spacing: 0.3px;
}

.about-toppers-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.about-toppers-nav .swiper-button-prev,
.about-toppers-nav .swiper-button-next {
    position: static !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 50%;
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.10);
    color: #0f172a !important;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.about-toppers-nav .swiper-button-prev::after,
.about-toppers-nav .swiper-button-next::after { font-size: 13px !important; font-weight: 800 !important; color: inherit; }
.about-toppers-nav .swiper-button-prev:hover,
.about-toppers-nav .swiper-button-next:hover { background: #e51b23 !important; color: #fff !important; border-color: #e51b23; }
.about-toppers-nav .swiper-pagination { position: static !important; width: auto !important; display: inline-flex; gap: 6px; }
.about-toppers-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(15, 23, 42, 0.25) !important;
    opacity: 1 !important;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
    margin: 0 !important;
}
.about-toppers-nav .swiper-pagination-bullet-active { background: #e51b23 !important; width: 24px; }

/* ---------- CTA strip ---------- */
.about-cta { padding: 0 0 56px; background: #ffffff; }
.about-cta-card {
    background:
       radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
       linear-gradient(135deg, #1c2b44 0%, #0f172a 100%);
    border-radius: 22px;
    padding: 36px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.about-cta-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.30) 0%, transparent 70%);
    pointer-events: none;
}
.about-cta-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.about-cta-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.about-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.about-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 10px 22px -6px rgba(229, 27, 35, 0.5);
    transition: transform 0.15s ease, filter 0.15s ease;
}
.about-cta-primary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff !important; }
.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.18s ease, background 0.18s ease;
}
.about-cta-secondary:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); color: #fff !important; }

/* ===========================================================
   PHOTO + VIDEO GALLERY PAGES
   Reuses .about-hero / .about-eyebrow / .about-title / .about-cta-*
   =========================================================== */

/* Hero variant for gallery pages — slightly smaller padding */
.gallery-hero { padding: 56px 0 48px; }

/* Quick-filter chip strip (floats over hero edge) */
.gallery-strip { background: transparent; padding: 0; margin-top: -28px; position: relative; z-index: 2; }
.gallery-strip-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.04);
    box-shadow: 0 18px 48px -16px rgba(15, 23, 42, 0.18);
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.gallery-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    color: #475569 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.18s ease;
}
.gallery-chip i { color: #e51b23; font-size: 11px; }
.gallery-chip:hover {
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -4px rgba(229, 27, 35, 0.4);
}
.gallery-chip:hover i { color: #fff; }

/* ---------- Photo Gallery ---------- */
.photo-gallery-modern {
    padding: 56px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
}
.pg-group { margin-bottom: 56px; }
.pg-group:last-child { margin-bottom: 0; }
.pg-group-head { margin-bottom: 22px; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.pg-group-head .about-title { font-size: 26px !important; margin-bottom: 6px; }
.pg-group-sub { font-size: 14px; color: #64748b; margin: 0; line-height: 1.55; }

.pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 992px) { .pg-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 640px) { .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.pg-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.10);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.pg-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -16px rgba(229, 27, 35, 0.25);
}
.pg-item:hover img { transform: scale(1.08); }
.pg-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-size: 22px;
}
.pg-item:hover .pg-item-overlay { opacity: 1; }
.pg-item-overlay i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(229, 27, 35, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(229, 27, 35, 0.5);
    transform: scale(0.85);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pg-item:hover .pg-item-overlay i { transform: scale(1); }

/* ---------- Video Gallery ---------- */
.video-strip-card {
    justify-content: space-between;
}
.video-strip-info { display: flex; align-items: center; gap: 14px; }
.video-strip-info > i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ff0000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.video-strip-info strong { display: block; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.video-strip-info span { display: block; font-size: 12.5px; color: #64748b; margin-top: 2px; }
.video-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff0000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none !important;
    box-shadow: 0 8px 18px -6px rgba(255, 0, 0, 0.45);
    transition: transform 0.18s ease, filter 0.18s ease;
}
.video-subscribe-btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #fff !important; }
.video-subscribe-btn i { font-size: 10px; }

.video-gallery-modern { padding: 56px 0; background: #ffffff; }
.vg-head { text-align: center; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.vg-head .about-title { font-size: 28px !important; }

.vg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1199px) { .vg-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 768px)  { .vg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .vg-grid { grid-template-columns: 1fr; gap: 16px; } }

.vg-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.06);
}
.vg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.18);
    box-shadow: 0 22px 40px -16px rgba(229, 27, 35, 0.20);
}

.vg-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}
.vg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.vg-card:hover .vg-thumb img { transform: scale(1.05); }
.vg-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ff5757;
    border-radius: 6px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.vg-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(229, 27, 35, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 10px 24px rgba(229, 27, 35, 0.5);
}
.vg-play i { margin-left: 2px; }
.vg-card:hover .vg-play { transform: translate(-50%, -50%) scale(1); opacity: 1; }

.vg-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.vg-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.18s ease;
}
.vg-card:hover .vg-title { color: #e51b23; }
.vg-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: auto;
}
.vg-meta i { font-size: 10px; color: #cbd5e1; }

.vg-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 28px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    color: #64748b;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.vg-empty-icon { font-size: 48px; color: #ff0000; opacity: 0.85; }
.vg-empty h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: #0f172a; margin: 0; letter-spacing: -0.2px; }
.vg-empty p { font-size: 14px; color: #64748b; line-height: 1.55; max-width: 460px; margin: 0; }
.vg-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #ff0000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 8px 18px -6px rgba(255, 0, 0, 0.4);
    margin-top: 4px;
    transition: transform 0.18s ease, filter 0.18s ease;
}
.vg-empty-btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #fff !important; }
.vg-empty-btn i { font-size: 10px; }

.vg-footer {
    margin-top: 36px;
    text-align: center;
}
.vg-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1.5px solid #0f172a;
    color: #0f172a !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.18s ease;
}
.vg-footer-link:hover {
    background: #e51b23;
    color: #fff !important;
    border-color: #e51b23;
    transform: translateY(-1px);
}

/* ===========================================================
   BLOG PAGES — listing, category, single
   =========================================================== */

.blog-hero { padding: 52px 0 44px; }
.gallery-chip--active {
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 6px 14px -4px rgba(229, 27, 35, 0.4);
}
.gallery-chip--active i { color: #fff !important; }
.blog-chip-count { color: inherit; opacity: 0.6; font-size: 11.5px; font-weight: 700; margin-left: 2px; }

/* Layout */
.blog-listing-modern { padding: 48px 0 64px; background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%); }
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 991px) { .blog-layout { grid-template-columns: 1fr; gap: 28px; } }

/* Article grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; gap: 18px; } }

/* Article card */
.blog-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.blog-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.18);
    box-shadow: 0 22px 40px -16px rgba(229, 27, 35, 0.16);
}
.blog-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    background: #f1f5f9;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card-v2:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 11px;
    background: rgba(229, 27, 35, 0.95);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.blog-card-meta i { color: #e51b23; margin-right: 4px; font-size: 11px; }
.blog-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.2px;
    margin: 0 !important;
}
.blog-card-title a { color: #0f172a !important; text-decoration: none !important; transition: color 0.18s ease; }
.blog-card-v2:hover .blog-card-title a { color: #e51b23 !important; }
.blog-card-excerpt {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-cta {
    margin-top: auto;
    padding-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e51b23 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: gap 0.18s ease;
}
.blog-card-v2:hover .blog-card-cta { gap: 12px; }
.blog-card-cta i { font-size: 11px; }

.blog-empty {
    padding: 40px 24px;
    background: #f8fafc;
    border-radius: 14px;
    text-align: center;
    color: #64748b;
    font-size: 14.5px;
}
.blog-empty a { color: #e51b23 !important; font-weight: 700; }

/* Sidebar */
.blog-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    align-self: start;
}
@media (max-width: 991px) { .blog-sidebar-v2 { position: static; } }

.blog-side-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 22px;
    box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.04);
}
.blog-side-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2f7;
}

/* Sidebar categories */
.blog-side-cats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.blog-side-cats li { list-style: none; }
.blog-side-cats li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.blog-side-cats li a:hover {
    background: rgba(229, 27, 35, 0.06);
    color: #e51b23 !important;
    transform: translateX(2px);
}
.blog-side-cats li a.is-active {
    background: rgba(229, 27, 35, 0.10);
    color: #e51b23 !important;
    font-weight: 700;
}
.blog-side-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 999px;
    min-width: 28px;
    text-align: center;
}
.blog-side-cats li a.is-active .blog-side-count {
    background: #e51b23;
    color: #fff;
}

/* Sidebar recent */
.blog-side-recent { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.blog-side-recent li { list-style: none; }
.blog-side-recent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none !important;
    color: inherit !important;
    padding: 4px;
    border-radius: 10px;
    transition: background 0.15s ease;
}
.blog-side-recent-item:hover { background: rgba(229, 27, 35, 0.04); }
.blog-side-recent-item img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.blog-side-recent-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 4px;
    transition: color 0.15s ease;
}
.blog-side-recent-item:hover strong { color: #e51b23; }
.blog-side-recent-item span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #94a3b8;
}
.blog-side-recent-item span i { font-size: 10px; }

/* Sidebar CTA */
.blog-side-cta {
    background:
       radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
       linear-gradient(135deg, #1c2b44 0%, #0f172a 100%) !important;
    border: none !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-side-cta::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.30) 0%, transparent 70%);
    pointer-events: none;
}
.blog-side-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ff5e62;
    margin-bottom: 8px;
}
.blog-side-cta h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff !important;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}
.blog-side-cta p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}
.blog-side-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    box-shadow: 0 6px 14px -4px rgba(229, 27, 35, 0.45);
    transition: transform 0.15s ease, filter 0.15s ease;
    position: relative;
    z-index: 1;
}
.blog-side-cta-btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #fff !important; }
.blog-side-cta-btn i { font-size: 10px; }

/* ---------- Single article ---------- */
.blog-detail-hero .blog-detail-title {
    font-size: clamp(28px, 4vw, 44px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    max-width: 920px;
}
.blog-detail-hero .blog-detail-title span { color: inherit !important; background: none !important; -webkit-text-fill-color: inherit !important; }
.blog-detail-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 75, 81, 0.18);
    color: #ff9aa0;
    border: 1px solid rgba(255, 75, 81, 0.35);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
}
.blog-detail-meta i { color: #ff8a8e; margin-right: 5px; }

.blog-detail-section { padding: 48px 0 64px; background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%); }
.blog-detail-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.10);
}
.blog-detail-thumb {
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #f1f5f9;
}
.blog-detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-detail-content {
    padding: 36px 38px;
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}
@media (max-width: 768px) { .blog-detail-content { padding: 22px 20px; } }
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    letter-spacing: -0.2px !important;
    margin: 28px 0 14px !important;
}
.blog-detail-content h1 { font-size: 28px !important; }
.blog-detail-content h2 { font-size: 24px !important; }
.blog-detail-content h3 { font-size: 20px !important; }
.blog-detail-content h4 { font-size: 18px !important; }
.blog-detail-content p { margin: 0 0 16px !important; color: #334155 !important; font-size: 16px !important; line-height: 1.75 !important; }
.blog-detail-content p:last-child { margin-bottom: 0 !important; }
.blog-detail-content a { color: #e51b23; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-detail-content a:hover { color: #c20c14; }
.blog-detail-content ul,
.blog-detail-content ol { padding-left: 22px; margin: 12px 0 18px; color: #334155; }
.blog-detail-content li { margin-bottom: 6px; }
.blog-detail-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 18px 0; display: block; }
.blog-detail-content blockquote {
    border-left: 3px solid #e51b23;
    padding: 12px 18px;
    background: rgba(229, 27, 35, 0.04);
    margin: 22px 0;
    color: #0f172a;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}
.blog-detail-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.blog-detail-content th, .blog-detail-content td { border: 1px solid #eef2f7; padding: 10px 12px; text-align: left; }
.blog-detail-content th { background: #f8fafc; font-weight: 700; }

.blog-detail-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 38px 28px;
    border-top: 1px solid #eef2f7;
}
@media (max-width: 768px) { .blog-detail-footer { padding: 18px 20px 22px; } }
.blog-share { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.blog-share strong { font-size: 13px; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.blog-share-icons { display: inline-flex; gap: 8px; }
.blog-share-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.blog-share-icons a:hover { transform: translateY(-2px); color: #fff !important; }
.blog-share-icons a.bs-wa:hover { background: #25d366; }
.blog-share-icons a.bs-fb:hover { background: #1877f2; }
.blog-share-icons a.bs-x:hover  { background: #0f172a; }
.blog-share-icons a.bs-li:hover { background: #0a66c2; }
.blog-share-icons a.bs-em:hover { background: #e51b23; }
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.15s ease, gap 0.15s ease;
}
.blog-back-link:hover { color: #e51b23 !important; gap: 10px; }
.blog-back-link i { font-size: 11px; }

.blog-detail-cta {
    margin-top: 28px;
    background:
       radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
       linear-gradient(135deg, #1c2b44 0%, #0f172a 100%);
    border-radius: 22px;
    padding: 32px 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.blog-detail-cta::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.32) 0%, transparent 70%);
    pointer-events: none;
}
.blog-detail-cta h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 4px;
    letter-spacing: -0.2px;
}
.blog-detail-cta p { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); margin: 0; }
.blog-detail-cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===========================================================
   CENTRE PAGES — Samyak Gurukul + Samyak Biyani
   Reuses .about-hero / .about-stats / .about-eyebrow / .about-title
   =========================================================== */

.centre-hero { padding: 56px 0 48px; }
.centre-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 75, 81, 0.15);
    color: #ff9aa0;
    border: 1px solid rgba(255, 75, 81, 0.30);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.centre-tag i { font-size: 11px; }
.centre-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    font-weight: 500;
}
.centre-hero-meta i { color: #ff8a8e; margin-right: 7px; font-size: 12px; }

/* Stats — re-anchor to overlap hero */
.centre-stats { margin-top: -28px; position: relative; z-index: 2; }

/* Intro */
.centre-intro { padding: 56px 0 48px; }
.centre-intro .about-intro-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; }
@media (max-width: 992px) { .centre-intro .about-intro-grid { grid-template-columns: 1fr; gap: 32px; } }

.centre-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 50px -18px rgba(15, 23, 42, 0.22);
}
.centre-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.centre-banner-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 18px -6px rgba(229, 27, 35, 0.45);
}

/* CTA row inside intro */
.centre-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

/* Facilities */
.centre-facilities { padding: 64px 0; background: linear-gradient(180deg, #fdfbf8 0%, #ffffff 100%); }
.centre-section-head { text-align: center; max-width: 680px; margin: 0 auto 32px; }
.centre-section-sub { font-size: 14.5px; color: #64748b; line-height: 1.6; margin: 8px 0 0; }
.centre-fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 992px) { .centre-fac-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 640px) { .centre-fac-grid { grid-template-columns: 1fr; gap: 16px; } }

.centre-fac-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.05);
}
.centre-fac-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.18);
    box-shadow: 0 22px 44px -16px rgba(229, 27, 35, 0.18);
}
.centre-fac-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef4e8 0%, #fde4cd 100%);
    color: #e51b23;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: background 0.18s ease, color 0.18s ease;
}
.centre-fac-card:hover .centre-fac-icon {
    background: linear-gradient(135deg, #e51b23 0%, #ff5e62 100%);
    color: #fff;
}
.centre-fac-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.centre-fac-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* Video + lead form block */
.centre-cta-block { padding: 64px 0; background: #ffffff; }
.centre-cta-block--single { padding-top: 0; }
.centre-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 992px) { .centre-cta-grid { grid-template-columns: 1fr; gap: 28px; } }

.centre-video-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
}
.centre-video-eyebrow i { font-size: 16px; }
.centre-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 22px 50px -18px rgba(15, 23, 42, 0.22);
}
.centre-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.centre-video-cap { margin-top: 12px; font-size: 13px; color: #64748b; }

.centre-form-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 28px;
    box-shadow: 0 22px 50px -18px rgba(15, 23, 42, 0.18);
    position: relative;
    overflow: hidden;
}
.centre-form-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e51b23 0%, #ff7e3d 100%);
}
.centre-form-card--wide {
    max-width: 760px;
    margin: 0 auto;
}
.centre-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 27, 35, 0.08);
    color: #e51b23;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.centre-form-dot {
    width: 6px; height: 6px;
    background: #e51b23;
    border-radius: 50%;
    animation: why-pulse 2s infinite;
}
.centre-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.centre-form-sub {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 20px;
}
.centre-form { display: flex; flex-direction: column; gap: 14px; }
.centre-form--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.centre-form--grid .centre-form-actions { grid-column: 1 / -1; }
.centre-form--grid .centre-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .centre-form--grid { grid-template-columns: 1fr; } }

.centre-field { display: flex; flex-direction: column; gap: 5px; }
.centre-field label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.centre-field-hint {
    text-transform: none;
    color: #94a3b8;
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0;
}
.centre-field input,
.centre-field select,
.centre-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: #0f172a;
    background: #fafbfc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}
.centre-field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.centre-field input::placeholder,
.centre-field textarea::placeholder { color: #94a3b8; font-weight: 400; }
.centre-field input:focus,
.centre-field select:focus,
.centre-field textarea:focus {
    border-color: #e51b23;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(229, 27, 35, 0.10);
}

.centre-form-submit {
    margin-top: 4px;
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 22px -6px rgba(229, 27, 35, 0.45);
    transition: transform 0.15s ease, filter 0.15s ease;
}
.centre-form-submit:hover { transform: translateY(-1px); filter: brightness(1.05); }
.centre-form-submit i { font-size: 12px; }

.centre-form-trust {
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.centre-form-trust i { color: #16a34a; font-size: 11px; }

/* Results / gallery blocks */
.centre-results { padding: 56px 0; background: #fdfbf8; }
.centre-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) { .centre-results-grid { grid-template-columns: 1fr; } }
.centre-results-grid img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.18);
}

.centre-gallery-block { padding: 56px 0; background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%); }
.centre-gallery-block .pg-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .centre-gallery-block .pg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .centre-gallery-block .pg-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Daily Free Initiatives — shared listing + detail styles
   (used by /current-affairs, /ras-daily-current-affairs,
    /daily-current-affairs-quiz, /daily-mains-practice)
   ============================================================ */

/* Hero used by all initiative listing pages — reuses .about-hero base */
.initiative-hero .about-hero-title { font-size: clamp(34px, 4.6vw, 54px); }

/* Filter strip (date range + category chips) */
.initiative-filter {
   background: #ffffff;
   border-bottom: 1px solid #eef2f7;
   padding: 18px 0;
   position: sticky;
   top: 0;
   z-index: 30;
   box-shadow: 0 2px 12px -8px rgba(15, 23, 42, 0.08);
}
.initiative-filter-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
}
.initiative-chips {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   list-style: none;
   padding: 0;
   margin: 0;
}
.initiative-chip {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 14px;
   border: 1.5px solid #e2e8f0;
   border-radius: 999px;
   background: #fff;
   color: #475569;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.18s ease;
   white-space: nowrap;
}
.initiative-chip:hover { border-color: #cbd5e1; color: #0f172a; transform: translateY(-1px); }
.initiative-chip.is-active {
   background: #e51b23;
   border-color: #e51b23;
   color: #fff;
   box-shadow: 0 6px 14px -4px rgba(229, 27, 35, 0.40);
}
.initiative-chip-count {
   background: rgba(0, 0, 0, 0.08);
   color: inherit;
   font-size: 11px;
   font-weight: 700;
   padding: 1px 7px;
   border-radius: 999px;
}
.initiative-chip.is-active .initiative-chip-count { background: rgba(255, 255, 255, 0.22); }

.initiative-search {
   position: relative;
   min-width: 220px;
   flex: 0 1 280px;
}
.initiative-search input {
   width: 100%;
   padding: 9px 14px 9px 38px;
   font-size: 13.5px;
   font-weight: 500;
   color: #0f172a;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-radius: 999px;
   outline: none;
   transition: all 0.15s ease;
   font-family: inherit;
}
.initiative-search input:focus { border-color: #e51b23; background: #fff; box-shadow: 0 0 0 4px rgba(229, 27, 35, 0.10); }
.initiative-search i {
   position: absolute;
   left: 14px;
   top: 50%;
   transform: translateY(-50%);
   color: #94a3b8;
   font-size: 13px;
}

/* =====================================================
   Pro filter bar (used on /current-affairs, etc.)
   Replaces the simpler .initiative-chips strip with a
   2-row toolbar: category chips + tools (search/sort/clear).
   ===================================================== */
.initiative-filter.pro-filter {
   padding: 18px 0 0;
   background: #ffffff;
   border-bottom: 1px solid #eef2f7;
   position: sticky;
   top: 0;
   z-index: 30;
   box-shadow: 0 6px 20px -16px rgba(15, 23, 42, 0.18);
}

/* Row 1: category strip ---------------------------------- */
.pro-filter-strip {
   position: relative;
   display: flex;
   gap: 8px;
   padding: 4px 0 16px;
   overflow-x: auto;
   scroll-snap-type: x proximity;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: thin;
}
.pro-filter-strip::-webkit-scrollbar { height: 4px; }
.pro-filter-strip::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 999px; }
@media (min-width: 992px) {
   .pro-filter-strip { flex-wrap: wrap; overflow-x: visible; }
}

.pro-chip {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 14px;
   border: 1.5px solid #e2e8f0;
   border-radius: 12px;
   background: #ffffff;
   color: #475569;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   font-weight: 600;
   line-height: 1;
   text-decoration: none;
   white-space: nowrap;
   scroll-snap-align: start;
   transition: all 0.18s ease;
   flex-shrink: 0;
}
.pro-chip i { font-size: 13px; color: #94a3b8; transition: color 0.18s ease; }
.pro-chip:hover {
   border-color: #cbd5e1;
   color: #0f172a;
   transform: translateY(-1px);
   box-shadow: 0 8px 16px -10px rgba(15, 23, 42, 0.20);
}
.pro-chip:hover i { color: #e51b23; }
.pro-chip.is-active {
   border-color: #0f172a;
   background: #0f172a;
   color: #ffffff;
   box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.40);
}
.pro-chip.is-active i { color: #ff4b51; }
.pro-chip-count {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 24px;
   padding: 2px 7px;
   background: #f1f5f9;
   color: #64748b;
   font-family: 'Outfit', sans-serif;
   font-size: 11px;
   font-weight: 800;
   border-radius: 999px;
   line-height: 1;
}
.pro-chip:hover .pro-chip-count { background: #fff1f2; color: #e51b23; }
.pro-chip.is-active .pro-chip-count {
   background: rgba(255, 255, 255, 0.16);
   color: #ffffff;
}

/* Mobile scroll cue */
.pro-filter-strip-fade {
   display: none;
   position: sticky;
   right: 0;
   width: 40px;
   margin-left: -40px;
   pointer-events: none;
   background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #ffffff 80%);
   flex-shrink: 0;
}
@media (max-width: 991px) { .pro-filter-strip-fade { display: block; } }

/* Row 2: toolbar (count · search · sort · clear) ---------- */
.pro-filter-toolbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 12px 0 14px;
   border-top: 1px solid #f1f5f9;
   flex-wrap: wrap;
}
.pro-filter-count {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   color: #475569;
   flex-shrink: 0;
}
.pro-filter-count strong { color: #0f172a; font-weight: 800; }
.pro-filter-count i { color: #e51b23; }
.pro-filter-tag {
   display: inline-flex;
   align-items: center;
   padding: 3px 10px;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 11.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   border-radius: 999px;
   margin-left: 4px;
}

.pro-filter-tools {
   display: flex;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
   flex: 1 1 auto;
   justify-content: flex-end;
}

/* Override default .initiative-search width when used in the pro toolbar */
.pro-filter-search { min-width: 200px; flex: 0 1 300px; }
.pro-filter-search input { padding-top: 9px; padding-bottom: 9px; }

/* Sort dropdown — styled native <select> */
.pro-filter-sort {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 0 14px 0 38px;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-radius: 999px;
   transition: all 0.15s ease;
   cursor: pointer;
   min-width: 160px;
}
.pro-filter-sort:hover { border-color: #cbd5e1; background: #ffffff; }
.pro-filter-sort > i:first-child {
   position: absolute;
   left: 14px;
   top: 50%;
   transform: translateY(-50%);
   color: #94a3b8;
   font-size: 13px;
   pointer-events: none;
}
.pro-filter-sort-caret {
   color: #94a3b8;
   font-size: 11px;
   pointer-events: none;
}
.pro-filter-sort select {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   background: transparent;
   border: none;
   outline: none;
   padding: 9px 4px 9px 0;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   font-weight: 600;
   color: #0f172a;
   cursor: pointer;
   width: 100%;
   line-height: 1.2;
}

.pro-filter-clear {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 14px;
   background: transparent;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 12.5px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
   border: 1.5px solid transparent;
   transition: all 0.15s ease;
}
.pro-filter-clear:hover {
   background: #fff1f2;
   border-color: #fecaca;
   color: #b91c1c;
}

/* Date range picker (used alongside sort + search inside the pro toolbar) */
.pro-filter-daterange {
   display: inline-flex;
   align-items: center;
   gap: 0;
   padding: 2px 4px 2px 6px;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-radius: 999px;
   transition: border-color 0.15s ease, background 0.15s ease;
}
.pro-filter-daterange:hover,
.pro-filter-daterange:focus-within {
   border-color: #cbd5e1;
   background: #ffffff;
}
.pro-filter-date {
   display: inline-flex;
   flex-direction: column;
   gap: 0;
   padding: 4px 10px;
   cursor: pointer;
   border-radius: 999px;
}
.pro-filter-date-label {
   font-family: 'Outfit', sans-serif;
   font-size: 9.5px;
   font-weight: 700;
   color: #94a3b8;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   line-height: 1;
   margin-bottom: 2px;
   pointer-events: none;
}
.pro-filter-date input[type="date"] {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   background: transparent;
   border: none;
   outline: none;
   padding: 0;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   font-weight: 600;
   color: #0f172a;
   line-height: 1.2;
   min-width: 110px;
   cursor: pointer;
}
.pro-filter-date input[type="date"]:focus { color: #e51b23; }
.pro-filter-date input[type="date"]::-webkit-calendar-picker-indicator {
   cursor: pointer;
   opacity: 0.55;
   filter: invert(40%) sepia(80%) saturate(2500%) hue-rotate(340deg) brightness(95%);
   transition: opacity 0.15s ease;
}
.pro-filter-date input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.pro-filter-date-sep {
   color: #cbd5e1;
   font-size: 14px;
   font-weight: 700;
   padding: 0 2px;
   pointer-events: none;
}
.pro-filter-date-apply {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   margin-left: 4px;
   background: #0f172a;
   color: #ffffff;
   border: none;
   border-radius: 50%;
   cursor: pointer;
   font-size: 11px;
   transition: all 0.15s ease;
}
.pro-filter-date-apply:hover {
   background: #e51b23;
   transform: translateY(-1px);
   box-shadow: 0 10px 20px -8px rgba(229, 27, 35, 0.45);
}

/* Mobile: stack the date range below other controls */
@media (max-width: 640px) {
   .pro-filter-daterange {
      flex: 1 1 100%;
      justify-content: space-between;
   }
   .pro-filter-date { padding: 6px 8px; }
   .pro-filter-date input[type="date"] { min-width: 0; width: 100%; font-size: 12px; }
   .pro-filter-date-label { font-size: 9px; }
}

/* Tighter spacing on small screens */
@media (max-width: 640px) {
   .initiative-filter.pro-filter { padding-top: 14px; }
   .pro-filter-toolbar { padding: 12px 0; gap: 10px; }
   .pro-filter-count { width: 100%; font-size: 12.5px; }
   .pro-filter-tools { width: 100%; justify-content: flex-start; gap: 8px; }
   .pro-filter-search { flex: 1 1 100%; min-width: 0; }
   .pro-filter-sort { flex: 1 1 auto; min-width: 0; }
   .pro-chip { padding: 8px 12px; font-size: 12.5px; }
   .pro-chip span:not(.pro-chip-count) { display: inline; }
}

/* Listing grid — date-stamped article cards */
.initiative-listing { padding: 56px 0 72px; background: linear-gradient(180deg, #fdfbf8 0%, #ffffff 100%); }
.initiative-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
   margin-top: 28px;
}
@media (max-width: 992px) { .initiative-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .initiative-grid { grid-template-columns: 1fr; gap: 16px; } }

.initiative-card {
   display: flex;
   flex-direction: column;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 14px;
   overflow: hidden;
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
   text-decoration: none;
   color: inherit;
}
.initiative-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 22px 40px -22px rgba(15, 23, 42, 0.22);
   border-color: #e2e8f0;
   color: inherit;
}
.initiative-card-thumb {
   position: relative;
   aspect-ratio: 16 / 9;
   overflow: hidden;
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.initiative-card-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}
.initiative-card:hover .initiative-card-thumb img { transform: scale(1.04); }
.initiative-card-badge {
   position: absolute;
   top: 12px;
   left: 12px;
   background: rgba(229, 27, 35, 0.95);
   color: #fff;
   font-family: 'Outfit', sans-serif;
   font-size: 10.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   padding: 5px 10px;
   border-radius: 999px;
   backdrop-filter: blur(6px);
}
.initiative-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.initiative-card-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 600;
   margin-bottom: 10px;
}
.initiative-card-meta i { color: #e51b23; font-size: 11px; }
.initiative-card-title {
   font-family: 'Outfit', sans-serif;
   font-size: 17px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.35;
   margin: 0 0 10px;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.initiative-card-excerpt {
   font-family: 'Inter', sans-serif;
   font-size: 13.5px;
   color: #475569;
   line-height: 1.55;
   margin: 0 0 14px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.initiative-card-cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #e51b23;
}
.initiative-card-cta i { font-size: 11px; transition: transform 0.18s ease; }
.initiative-card:hover .initiative-card-cta i { transform: translateX(3px); }

/* Text-only card variant: collapses to a compact card with no thumbnail block.
   Used when an article has no image — keeps the grid clean and the page dense. */
.initiative-card.is-text-only {
   position: relative;
   padding-left: 4px;
   background: #ffffff;
}
.initiative-card.is-text-only::before {
   content: '';
   position: absolute;
   top: 0; left: 0; bottom: 0;
   width: 4px;
   background: linear-gradient(180deg, #e51b23 0%, #ff4b51 100%);
   border-radius: 14px 0 0 14px;
}
.initiative-card.is-text-only .initiative-card-body { padding: 22px 22px 22px 26px; }
.initiative-card.is-text-only .initiative-card-title {
   font-size: 18px;
   -webkit-line-clamp: 3;
   margin-bottom: 12px;
}
.initiative-card.is-text-only .initiative-card-excerpt {
   font-size: 14px;
   -webkit-line-clamp: 4;
   margin-bottom: 16px;
}
.initiative-card-cat {
   display: inline-block;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 10.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   padding: 3px 9px;
   border-radius: 999px;
}

/* Text-only featured: single-column layout, no big empty image box */
.initiative-featured.is-text-only {
   grid-template-columns: 1fr;
   position: relative;
   overflow: hidden;
}
.initiative-featured.is-text-only::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 6px;
   background: linear-gradient(90deg, #e51b23 0%, #ff4b51 100%);
}
.initiative-featured.is-text-only .initiative-featured-body { padding: 36px 38px 32px; }
@media (max-width: 640px) {
   .initiative-featured.is-text-only .initiative-featured-body { padding: 26px 22px 24px; }
}
.initiative-featured.is-text-only .initiative-featured-title { font-size: clamp(22px, 2.8vw, 32px); }
.initiative-featured.is-text-only .initiative-featured-excerpt { max-width: 760px; }

/* Load-more button (used by all initiative listings) */
.initiative-loadmore-wrap {
   margin-top: 40px;
   margin-bottom: 8px;
   display: flex;
   justify-content: center;
   width: 100%;
}
.initiative-loadmore-btn {
   display: inline-flex !important;
   align-items: center;
   gap: 10px;
   width: auto !important;
   max-width: 380px;
   padding: 12px 26px !important;
   font-family: 'Outfit', sans-serif !important;
   font-size: 13px !important;
   font-weight: 700 !important;
   color: #0f172a !important;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   background: #ffffff !important;
   border: 1.5px solid #e2e8f0 !important;
   border-radius: 999px !important;
   cursor: pointer;
   line-height: 1 !important;
   white-space: nowrap;
   box-shadow: 0 8px 22px -10px rgba(15, 23, 42, 0.20);
   transition: all 0.18s ease;
}
.initiative-loadmore-btn:hover,
.initiative-loadmore-btn:focus {
   background: #0f172a !important;
   border-color: #0f172a !important;
   color: #ffffff !important;
   transform: translateY(-2px);
   box-shadow: 0 16px 28px -10px rgba(15, 23, 42, 0.45);
}
.initiative-loadmore-btn:active { transform: translateY(0); }
.initiative-loadmore-btn i {
   font-size: 11px;
   color: #e51b23;
   transition: transform 0.18s ease;
}
.initiative-loadmore-btn:hover i {
   color: #ffffff;
   transform: translateY(2px);
}
.initiative-loadmore-count {
   font-family: 'Inter', sans-serif;
   font-size: 11px;
   font-weight: 600;
   color: #94a3b8;
   letter-spacing: 0.3px;
   text-transform: none;
   margin-left: 2px;
}
.initiative-loadmore-btn:hover .initiative-loadmore-count { color: rgba(255,255,255,0.65); }

/* Featured-today card (full-width hero card above grid) */
.initiative-featured {
   display: grid;
   grid-template-columns: 1.05fr 1fr;
   gap: 0;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   overflow: hidden;
   margin-bottom: 28px;
   box-shadow: 0 28px 60px -34px rgba(15, 23, 42, 0.22);
}
@media (max-width: 768px) { .initiative-featured { grid-template-columns: 1fr; } }
.initiative-featured-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0f172a; }
.initiative-featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
.initiative-featured-body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 640px) { .initiative-featured-body { padding: 22px; } }
.initiative-featured-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   padding: 5px 12px;
   border-radius: 999px;
   width: fit-content;
   margin-bottom: 14px;
}
.initiative-featured-title {
   font-family: 'Outfit', sans-serif;
   font-size: clamp(22px, 2.6vw, 30px);
   font-weight: 800;
   color: #0f172a;
   line-height: 1.25;
   margin: 0 0 12px;
   letter-spacing: -0.3px;
}
.initiative-featured-excerpt { font-size: 14.5px; color: #475569; line-height: 1.65; margin: 0 0 18px; }
.initiative-featured-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 11px 22px;
   background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
   color: #ffffff;
   font-family: 'Outfit', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
   width: fit-content;
   box-shadow: 0 12px 24px -10px rgba(229, 27, 35, 0.45);
   transition: transform 0.15s ease;
}
.initiative-featured-cta:hover { transform: translateY(-2px); color: #fff; }

/* Empty state */
.initiative-empty {
   text-align: center;
   padding: 56px 24px;
   background: #fafbfc;
   border: 1.5px dashed #e2e8f0;
   border-radius: 16px;
   color: #64748b;
   font-size: 14.5px;
}
.initiative-empty i { font-size: 32px; color: #cbd5e1; display: block; margin-bottom: 12px; }

/* ----- Quiz cards (used by /daily-current-affairs-quiz listing) ----- */
.quiz-card {
   display: flex;
   flex-direction: column;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 14px;
   padding: 22px;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   text-decoration: none;
   color: inherit;
   position: relative;
   overflow: hidden;
}
.quiz-card::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 4px;
   background: linear-gradient(90deg, #e51b23 0%, #ff4b51 100%);
}
.quiz-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 22px 40px -22px rgba(15, 23, 42, 0.22);
   color: inherit;
}
.quiz-card-head {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 14px;
}
.quiz-card-date {
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}
.quiz-card-date i { color: #e51b23; }
.quiz-card-tag {
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   padding: 4px 10px;
   border-radius: 999px;
}
.quiz-card-title {
   font-family: 'Outfit', sans-serif;
   font-size: 17px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.35;
   margin: 0 0 16px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.quiz-card-stats {
   display: flex;
   gap: 16px;
   padding: 12px 0;
   border-top: 1px solid #f1f5f9;
   border-bottom: 1px solid #f1f5f9;
   margin-bottom: 14px;
}
.quiz-card-stat { display: flex; flex-direction: column; gap: 2px; }
.quiz-card-stat-num {
   font-family: 'Outfit', sans-serif;
   font-size: 18px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1;
}
.quiz-card-stat-label {
   font-family: 'Inter', sans-serif;
   font-size: 10.5px;
   color: #94a3b8;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.quiz-card-cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 10px 18px;
   background: #0f172a;
   color: #fff !important;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   border-radius: 10px;
   text-decoration: none;
   transition: all 0.15s ease;
}
.quiz-card:hover .quiz-card-cta { background: #e51b23; }
.quiz-card-cta i { font-size: 11px; }

/* Mains practice question card (used by /daily-mains-practice listing) */
.mains-q-card {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 14px;
   padding: 20px 22px;
   margin-bottom: 14px;
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 18px;
   align-items: center;
   transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.mains-q-card:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -22px rgba(15, 23, 42, 0.20); border-color: #e2e8f0; }
@media (max-width: 640px) { .mains-q-card { grid-template-columns: 1fr; padding: 18px; } }
.mains-q-meta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 8px;
   font-family: 'Inter', sans-serif;
   font-size: 11.5px;
   color: #64748b;
   font-weight: 600;
}
.mains-q-meta-tag {
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 10px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   padding: 3px 9px;
   border-radius: 999px;
}
.mains-q-title {
   font-family: 'Outfit', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.45;
   margin: 0;
}
.mains-q-title a { color: inherit; text-decoration: none; }
.mains-q-title a:hover { color: #e51b23; }
.mains-q-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.mains-q-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 9px 16px;
   font-family: 'Outfit', sans-serif;
   font-size: 12.5px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
   transition: all 0.15s ease;
   white-space: nowrap;
}
.mains-q-btn-primary { background: #0f172a; color: #fff; }
.mains-q-btn-primary:hover { background: #e51b23; color: #fff; transform: translateY(-1px); }
.mains-q-btn-ghost { background: #f8fafc; color: #475569; border: 1.5px solid #e2e8f0; }
.mains-q-btn-ghost:hover { background: #fff; border-color: #e51b23; color: #e51b23; }
.mains-q-btn-disabled { background: #f1f5f9; color: #94a3b8; cursor: not-allowed; }

.mains-guides {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
   margin-bottom: 28px;
}
@media (max-width: 768px) { .mains-guides { grid-template-columns: 1fr; } }
.mains-guide-card {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 16px 18px;
   background: #fff;
   border: 1px solid #eef2f7;
   border-radius: 12px;
   text-decoration: none;
   color: inherit;
   transition: all 0.18s ease;
}
.mains-guide-card:hover { transform: translateY(-2px); border-color: #e51b23; box-shadow: 0 14px 28px -18px rgba(229, 27, 35, 0.30); color: inherit; }
.mains-guide-icon {
   width: 38px; height: 38px;
   display: flex; align-items: center; justify-content: center;
   border-radius: 10px;
   background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
   color: #e51b23;
   font-size: 16px;
   flex-shrink: 0;
}
.mains-guide-text { display: flex; flex-direction: column; }
.mains-guide-text strong { font-family: 'Outfit', sans-serif; font-size: 13.5px; color: #0f172a; font-weight: 700; }
.mains-guide-text span { font-family: 'Inter', sans-serif; font-size: 11.5px; color: #64748b; }

/* ----- Article / detail page layout (shared by all 4 detail pages) ----- */
.initiative-detail-section { padding: 48px 0 80px; background: #ffffff; }
.initiative-layout {
   display: grid;
   grid-template-columns: minmax(0, 1fr) 320px;
   gap: 36px;
   align-items: start;
}
@media (max-width: 992px) { .initiative-layout { grid-template-columns: 1fr; } }

.initiative-article {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   overflow: hidden;
}
.initiative-article-thumb { aspect-ratio: 16 / 8; background: #f8fafc; overflow: hidden; }
.initiative-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.initiative-article-body { padding: 32px 36px 36px; }
@media (max-width: 640px) { .initiative-article-body { padding: 24px 22px; } }

/* Meta strip inside the white article card — dark text on light background.
   (The hero's .blog-detail-meta uses white text and is unreadable here.) */
.initiative-article-meta {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 14px;
   padding-bottom: 18px;
   margin-bottom: 22px;
   border-bottom: 1px solid #eef2f7;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   color: #64748b;
   font-weight: 600;
}
.initiative-article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.initiative-article-meta i { color: #e51b23; font-size: 12px; }
.initiative-article-meta-tag {
   display: inline-flex;
   align-items: center;
   padding: 5px 12px;
   background: #fff1f2;
   color: #e51b23 !important;
   font-family: 'Outfit', sans-serif;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   border-radius: 999px;
}
.initiative-article-body h1,
.initiative-article-body h2,
.initiative-article-body h3,
.initiative-article-body h4 {
   font-family: 'Outfit', sans-serif;
   color: #0f172a;
   font-weight: 800;
   line-height: 1.3;
   margin: 26px 0 12px;
   letter-spacing: -0.2px;
}
.initiative-article-body h2 { font-size: 24px; }
.initiative-article-body h3 { font-size: 20px; }
.initiative-article-body h4 { font-size: 17px; }
.initiative-article-body p {
   font-family: 'Inter', sans-serif;
   font-size: 15.5px;
   line-height: 1.75;
   color: #1f2937;
   margin: 0 0 16px;
}
.initiative-article-body ul,
.initiative-article-body ol {
   padding-left: 22px;
   margin: 0 0 18px;
   color: #1f2937;
   font-size: 15.5px;
   line-height: 1.75;
}
.initiative-article-body li { margin-bottom: 6px; }
.initiative-article-body a { color: #e51b23; text-decoration: underline; text-underline-offset: 3px; }
.initiative-article-body blockquote {
   margin: 20px 0;
   padding: 16px 20px;
   border-left: 4px solid #e51b23;
   background: #fff5f5;
   border-radius: 0 10px 10px 0;
   font-style: italic;
   color: #1f2937;
}
.initiative-article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0; }
.initiative-article-body table {
   width: 100%;
   border-collapse: collapse;
   margin: 18px 0;
   font-size: 14px;
}
.initiative-article-body table th,
.initiative-article-body table td {
   border: 1px solid #e2e8f0;
   padding: 10px 12px;
   text-align: left;
}
.initiative-article-body table th { background: #f8fafc; font-weight: 700; color: #0f172a; }
.initiative-article-body table tr:nth-child(even) td { background: #fafbfc; }
.initiative-article-body iframe { width: 100%; max-width: 100%; border: 0; border-radius: 10px; margin: 16px 0; }

.initiative-article-foot {
   margin-top: 28px;
   padding-top: 22px;
   border-top: 1px solid #eef2f7;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 16px;
}
.initiative-share {
   display: flex;
   align-items: center;
   gap: 10px;
}
.initiative-share strong {
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #0f172a;
}
.initiative-share-icons { display: flex; gap: 8px; }
.initiative-share-icons a {
   width: 36px; height: 36px;
   display: inline-flex; align-items: center; justify-content: center;
   border-radius: 50%;
   background: #f1f5f9;
   color: #475569;
   font-size: 14px;
   text-decoration: none;
   transition: all 0.15s ease;
}
.initiative-share-icons a:hover { transform: translateY(-2px); color: #fff; }
.initiative-share-icons .bs-wa:hover { background: #25d366; }
.initiative-share-icons .bs-fb:hover { background: #1877f2; }
.initiative-share-icons .bs-x:hover { background: #0f172a; }
.initiative-share-icons .bs-li:hover { background: #0a66c2; }
.initiative-share-icons .bs-em:hover { background: #e51b23; }
.initiative-back-link {
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #e51b23;
   text-decoration: none;
}
.initiative-back-link:hover { color: #b91c1c; }
.initiative-back-link i { margin-right: 4px; }

/* Sidebar (matches blog sidebar look) */
.initiative-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
@media (max-width: 992px) { .initiative-sidebar { position: static; } }
.initiative-side-card {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 14px;
   padding: 20px 22px;
}
.initiative-side-title {
   font-family: 'Outfit', sans-serif;
   font-size: 14px;
   font-weight: 800;
   color: #0f172a;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   margin: 0 0 14px;
   padding-bottom: 12px;
   border-bottom: 2px solid #e51b23;
   display: inline-block;
}
.initiative-side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.initiative-side-list a {
   display: flex;
   gap: 10px;
   align-items: flex-start;
   text-decoration: none;
   color: inherit;
   padding: 8px 0;
   border-bottom: 1px solid #f1f5f9;
}
.initiative-side-list li:last-child a { border-bottom: 0; }
.initiative-side-list strong {
   display: block;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.4;
   margin-bottom: 3px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.initiative-side-list span {
   font-family: 'Inter', sans-serif;
   font-size: 11.5px;
   color: #64748b;
   font-weight: 500;
}
.initiative-side-list a:hover strong { color: #e51b23; }

.initiative-side-cta {
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
   color: #ffffff;
   border-color: transparent;
}
.initiative-side-cta .initiative-side-title { color: #ffffff; border-bottom-color: #e51b23; }
.initiative-side-cta p { font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.6; margin: 0 0 14px; }
.initiative-side-cta-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 10px 18px;
   background: #e51b23;
   color: #fff !important;
   font-family: 'Outfit', sans-serif;
   font-size: 12.5px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
   transition: transform 0.15s ease;
}
.initiative-side-cta-btn:hover { transform: translateY(-2px); }

/* Featured PDF download (rasdailycurrentaffairs / lecture-plan-details) */
.initiative-pdf-frame {
   width: 100%;
   height: 70vh;
   min-height: 480px;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   margin-top: 16px;
}
/* "Tall" variant — used by pages where the PDF is the main content
   (e.g. lecture-plan-details) so the in-page reader takes most of the screen */
.initiative-pdf-frame.initiative-pdf-frame--tall {
   height: calc(100vh - 60px);
   min-height: 900px;
}
.initiative-pdf-fallback {
   display: flex;
   gap: 14px;
   align-items: center;
   padding: 18px 22px;
   background: #f8fafc;
   border: 1.5px dashed #e2e8f0;
   border-radius: 12px;
   margin-top: 18px;
}
.initiative-pdf-fallback i { font-size: 24px; color: #e51b23; }
.initiative-pdf-fallback strong { font-family: 'Outfit', sans-serif; color: #0f172a; }
.initiative-pdf-fallback a {
   margin-left: auto;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 16px;
   background: #e51b23;
   color: #fff;
   font-size: 12.5px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
}

/* ============================================================
   Quiz attempt engine — modernised UI for /quiz-details/:id
   ============================================================ */

.quiz-section { padding: 28px 0 80px; background: linear-gradient(180deg, #fdfbf8 0%, #ffffff 100%); }

/* ============================================================
   Quiz attempt full-screen mode
   When <body class="quiz-fullscreen"> is set, all floating
   widgets (WhatsApp, Contact Us, Social Connect, chatbot) are
   hidden and the page tightens up so Submit/Next fit in one
   viewport.
   ============================================================ */
body.quiz-fullscreen .floating-whatsapp,
body.quiz-fullscreen #samyakFormLauncher,
body.quiz-fullscreen .social-slide-wrapper,
body.quiz-fullscreen #magicform-root,
body.quiz-fullscreen #magicform-bubble-widget-bubble,
body.quiz-fullscreen #magicform-bubble-widget-chat-panel,
body.quiz-fullscreen .top-bar,
body.quiz-fullscreen .announcement-strip,
body.quiz-fullscreen .scrollUp,
body.quiz-fullscreen .scroll-up,
body.quiz-fullscreen .scroll-top { display: none !important; visibility: hidden !important; }

body.quiz-fullscreen .quiz-section { padding: 14px 0 24px; min-height: calc(100vh - 90px); }

/* Tighter attempt arena */
body.quiz-fullscreen .quiz-main { padding: 18px 24px 20px; }
body.quiz-fullscreen .quiz-main-head { margin-bottom: 14px; padding-bottom: 12px; }
body.quiz-fullscreen .quiz-question { font-size: 15.5px; margin-bottom: 14px; line-height: 1.5; }
body.quiz-fullscreen .quiz-choices { gap: 8px; margin-bottom: 16px; }
body.quiz-fullscreen .quiz-choice { padding: 10px 14px; }
body.quiz-fullscreen .quiz-choice-marker { width: 22px; height: 22px; font-size: 11px; }
body.quiz-fullscreen .quiz-choice-text { font-size: 14px; }
body.quiz-fullscreen .quiz-actions { padding-top: 12px; }
body.quiz-fullscreen .quiz-action-btn { padding: 9px 18px !important; font-size: 12.5px !important; }
body.quiz-fullscreen .quiz-palette { padding: 14px 16px; top: 80px; }
body.quiz-fullscreen .quiz-palette-title { font-size: 11px; margin-bottom: 10px; padding-bottom: 8px; }
body.quiz-fullscreen .quiz-palette-grid { gap: 6px; }
body.quiz-fullscreen .quiz-palette-num { font-size: 12px; border-radius: 6px; }
body.quiz-fullscreen .quiz-palette-legend { margin-top: 12px; gap: 4px; font-size: 11px; }
body.quiz-fullscreen .quiz-timer { padding: 6px 14px; font-size: 13px; }

/* Hide page footer when attempt is in progress (keep on intro screen) */
body.quiz-fullscreen.quiz-attempting .samyak-footer,
body.quiz-fullscreen.quiz-attempting .samyak-footer-minimal,
body.quiz-fullscreen.quiz-attempting footer { display: none !important; }

/* Tighten pre-attempt screen too */
body.quiz-fullscreen .quiz-intro { gap: 20px; }
body.quiz-fullscreen .quiz-intro-card { padding: 24px 26px 22px; }
body.quiz-fullscreen .quiz-intro-title { font-size: clamp(20px, 2.2vw, 24px); margin-bottom: 6px; }
body.quiz-fullscreen .quiz-intro-sub { margin-bottom: 16px; font-size: 13px; }
body.quiz-fullscreen .quiz-intro-stats { gap: 10px; margin-bottom: 16px; }
body.quiz-fullscreen .quiz-intro-stat { padding: 10px 10px; }
body.quiz-fullscreen .quiz-intro-stat-num { font-size: 20px; }
body.quiz-fullscreen .quiz-instructions { padding: 14px 18px; }
body.quiz-fullscreen .quiz-instructions ul { font-size: 13px; }
body.quiz-fullscreen .quiz-instructions li { margin-bottom: 4px; }
body.quiz-fullscreen .quiz-start-btn { padding: 11px 24px; font-size: 13px; }

/* Slim breadcrumb shown at the top of the quiz attempt page (replaces the dark hero) */
.quiz-crumbs {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
   max-width: 1080px;
   margin: 0 auto 22px;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: #64748b;
}
.quiz-crumbs a {
   color: #475569;
   font-weight: 600;
   text-decoration: none;
   transition: color 0.15s ease;
}
.quiz-crumbs a:hover { color: #e51b23; }
.quiz-crumbs span {
   color: #0f172a;
   font-weight: 700;
   max-width: 60ch;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
.quiz-crumbs i { font-size: 9px; color: #cbd5e1; }

/* Pre-attempt instructions screen — 2-column layout on desktop */
.quiz-intro {
   max-width: 1080px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.05fr 1fr;
   gap: 28px;
   align-items: start;
}
@media (max-width: 900px) { .quiz-intro { grid-template-columns: 1fr; max-width: 720px; } }

.quiz-intro-card {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 32px 34px 28px;
   box-shadow: 0 30px 60px -34px rgba(15, 23, 42, 0.18);
}
@media (max-width: 640px) { .quiz-intro-card { padding: 24px 22px; } }
.quiz-intro-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   padding: 5px 12px;
   border-radius: 999px;
   margin-bottom: 14px;
}
.quiz-intro-title {
   font-family: 'Outfit', sans-serif;
   font-size: clamp(22px, 2.6vw, 28px);
   font-weight: 800;
   color: #0f172a;
   margin: 0 0 8px;
   line-height: 1.3;
   letter-spacing: -0.3px;
}
.quiz-intro-sub { font-size: 14px; color: #64748b; margin: 0 0 22px; }
.quiz-intro-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
   margin-bottom: 22px;
}
.quiz-intro-stat {
   text-align: center;
   padding: 14px 12px;
   background: #f8fafc;
   border-radius: 12px;
   border: 1px solid #eef2f7;
}
.quiz-intro-stat-num {
   font-family: 'Outfit', sans-serif;
   font-size: 22px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1;
}
.quiz-intro-stat-label {
   font-family: 'Inter', sans-serif;
   font-size: 11px;
   color: #64748b;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-top: 4px;
}

.quiz-instructions {
   background: #fff5f5;
   border: 1px solid #fee2e2;
   border-radius: 12px;
   padding: 18px 22px 16px;
   margin-bottom: 0;
}
.quiz-instructions-head {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 10px;
   font-family: 'Outfit', sans-serif;
   font-size: 12px;
   color: #b91c1c;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
}
.quiz-instructions-head i { font-size: 13px; }
.quiz-instructions ul { margin: 0; padding-left: 18px; font-size: 13.5px; color: #475569; line-height: 1.65; }
.quiz-instructions li { margin-bottom: 6px; }
.quiz-instructions li:last-child { margin-bottom: 0; }
.quiz-instructions li strong { color: #0f172a; font-weight: 700; white-space: nowrap; }

.quiz-intro-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.quiz-intro-actions button { width: auto; }
.quiz-start-btn {
   width: auto;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 13px 28px;
   background: linear-gradient(135deg, #e51b23 0%, #ff4b51 100%);
   color: #fff;
   font-family: 'Outfit', sans-serif;
   font-size: 14px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   text-decoration: none;
   border: none;
   border-radius: 999px;
   cursor: pointer;
   box-shadow: 0 14px 26px -8px rgba(229, 27, 35, 0.45);
   transition: transform 0.15s ease;
}
.quiz-start-btn:hover { transform: translateY(-2px); color: #fff; }
.quiz-back-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 13px 22px;
   background: #f1f5f9;
   color: #475569;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   border-radius: 999px;
}
.quiz-back-btn:hover { background: #e2e8f0; color: #0f172a; }

/* Attempt layout */
.quiz-arena { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; align-items: start; }
@media (max-width: 992px) { .quiz-arena { grid-template-columns: 1fr; } }

.quiz-main {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 28px 32px 32px;
   box-shadow: 0 30px 60px -34px rgba(15, 23, 42, 0.22);
}
@media (max-width: 640px) { .quiz-main { padding: 22px 20px 24px; } }
.quiz-main-head {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   margin-bottom: 22px;
   padding-bottom: 18px;
   border-bottom: 1px solid #eef2f7;
   flex-wrap: wrap;
}
.quiz-progress-label {
   font-family: 'Outfit', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.quiz-progress-bar {
   width: 100%;
   max-width: 280px;
   height: 8px;
   background: #f1f5f9;
   border-radius: 999px;
   overflow: hidden;
   margin-top: 6px;
}
.quiz-progress-fill {
   height: 100%;
   background: linear-gradient(90deg, #e51b23 0%, #ff4b51 100%);
   border-radius: 999px;
   transition: width 0.3s ease;
}
.quiz-timer {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 16px;
   background: #0f172a;
   color: #fff;
   font-family: 'Outfit', sans-serif;
   font-size: 14px;
   font-weight: 800;
   border-radius: 999px;
   letter-spacing: 0.5px;
}
.quiz-timer.is-warning { background: #b91c1c; animation: quizPulse 1s infinite; }
@keyframes quizPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.quiz-timer i { font-size: 12px; }

.quiz-question {
   font-family: 'Outfit', sans-serif;
   font-size: 17px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.55;
   margin: 0 0 22px;
}
.quiz-question .quiz-question-num {
   display: inline-block;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 12px;
   font-weight: 800;
   padding: 4px 10px;
   border-radius: 8px;
   margin-right: 8px;
   vertical-align: middle;
}

.quiz-choices { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.quiz-choice {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 14px 18px;
   background: #fafbfc;
   border: 1.5px solid #e2e8f0;
   border-radius: 12px;
   cursor: pointer;
   transition: all 0.15s ease;
   user-select: none;
}
.quiz-choice:hover { border-color: #cbd5e1; background: #fff; }
.quiz-choice.is-selected { border-color: #e51b23; background: #fff5f5; box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.10); }
.quiz-choice-marker {
   width: 26px;
   height: 26px;
   border-radius: 50%;
   background: #fff;
   border: 1.5px solid #cbd5e1;
   color: #64748b;
   font-family: 'Outfit', sans-serif;
   font-size: 12px;
   font-weight: 800;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: 1px;
}
.quiz-choice.is-selected .quiz-choice-marker { background: #e51b23; border-color: #e51b23; color: #fff; }
.quiz-choice-text {
   font-family: 'Inter', sans-serif;
   font-size: 14.5px;
   color: #1f2937;
   line-height: 1.55;
}

/* Review mode (post-submit): correct / wrong choices */
.quiz-choice.is-correct {
   border-color: #16a34a;
   background: #f0fdf4;
   box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.10);
}
.quiz-choice.is-correct .quiz-choice-marker {
   background: #16a34a;
   border-color: #16a34a;
   color: #fff;
}
.quiz-choice.is-wrong {
   border-color: #dc2626;
   background: #fef2f2;
}
.quiz-choice.is-wrong .quiz-choice-marker {
   background: #dc2626;
   border-color: #dc2626;
   color: #fff;
}

.quiz-actions {
   display: flex !important;
   gap: 12px;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   margin-top: 4px;
   padding-top: 22px;
   border-top: 1px solid #f1f5f9;
}
.quiz-actions-right { display: flex !important; gap: 10px; flex-wrap: wrap; align-items: center; }
.quiz-action-btn {
   display: inline-flex !important;
   align-items: center;
   gap: 6px;
   width: auto !important;
   padding: 11px 22px !important;
   font-family: 'Outfit', sans-serif !important;
   font-size: 13px !important;
   font-weight: 700 !important;
   line-height: 1 !important;
   border-radius: 999px !important;
   cursor: pointer;
   border: none !important;
   transition: all 0.15s ease;
   text-decoration: none;
   white-space: nowrap;
}
.quiz-action-btn-primary { background: #0f172a !important; color: #fff !important; }
.quiz-action-btn-primary:hover { background: #e51b23 !important; }
.quiz-action-btn-primary:disabled { background: #94a3b8 !important; cursor: not-allowed; }
.quiz-action-btn-ghost { background: #f1f5f9 !important; color: #475569 !important; }
.quiz-action-btn-ghost:hover { background: #e2e8f0 !important; color: #0f172a !important; }
.quiz-action-btn-ghost:disabled { background: #f8fafc !important; color: #cbd5e1 !important; cursor: not-allowed; }
.quiz-action-btn-submit {
   background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
   color: #fff !important;
   box-shadow: 0 10px 22px -10px rgba(22, 163, 74, 0.45);
   animation: quizSubmitAppear 0.35s ease-out;
}
.quiz-action-btn-submit:hover { transform: translateY(-1px); }
@keyframes quizSubmitAppear {
   0%   { opacity: 0; transform: scale(0.92) translateY(4px); }
   100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Inline hint shown when the user is on the last question but hasn't answered everything yet */
.quiz-submit-hint {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 16px;
   background: #fff7ed;
   color: #b45309;
   border: 1.5px solid #fed7aa;
   border-radius: 999px;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   font-weight: 600;
}
.quiz-submit-hint strong { color: #9a3412; font-weight: 800; }
.quiz-submit-hint i { font-size: 12px; color: #d97706; }

@media (max-width: 640px) {
   .quiz-actions { flex-direction: column; align-items: stretch; }
   .quiz-actions-right { width: 100%; }
   .quiz-action-btn { flex: 1 1 auto; justify-content: center; }
}

/* Question palette (sidebar) */
.quiz-palette {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 14px;
   padding: 18px 20px;
   position: sticky;
   top: 90px;
}
@media (max-width: 992px) { .quiz-palette { position: static; } }
.quiz-palette-title {
   font-family: 'Outfit', sans-serif;
   font-size: 12px;
   font-weight: 800;
   color: #0f172a;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   margin: 0 0 14px;
   padding-bottom: 10px;
   border-bottom: 2px solid #e51b23;
}
.quiz-palette-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 8px;
}
.quiz-palette-num {
   aspect-ratio: 1 / 1;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-radius: 8px;
   color: #475569;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 800;
   cursor: pointer;
   transition: all 0.15s ease;
}
.quiz-palette-num:hover { border-color: #cbd5e1; }
.quiz-palette-num.is-current { border-color: #e51b23; background: #fff5f5; color: #e51b23; }
.quiz-palette-num.is-answered { background: #16a34a; color: #fff; border-color: #16a34a; }
.quiz-palette-num.is-current.is-answered { box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.20); }

.quiz-palette-legend { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; font-family: 'Inter', sans-serif; font-size: 11.5px; color: #64748b; }
.quiz-palette-legend-row { display: flex; align-items: center; gap: 8px; }
.quiz-palette-legend-dot { width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid #e2e8f0; background: #f8fafc; }
.quiz-palette-legend-dot.is-answered { background: #16a34a; border-color: #16a34a; }
.quiz-palette-legend-dot.is-current { background: #fff5f5; border-color: #e51b23; }

/* Results screen */
.quiz-result {
   max-width: 760px;
   margin: 0 auto;
   text-align: center;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 42px 38px;
   box-shadow: 0 30px 60px -34px rgba(15, 23, 42, 0.22);
}
.quiz-result-ring {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   margin: 0 auto 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: conic-gradient(#16a34a var(--score, 0deg), #f1f5f9 0);
   position: relative;
}
.quiz-result-ring::after {
   content: '';
   position: absolute;
   inset: 10px;
   border-radius: 50%;
   background: #ffffff;
}
.quiz-result-ring-text {
   position: relative;
   z-index: 1;
   text-align: center;
}
.quiz-result-score {
   font-family: 'Outfit', sans-serif;
   font-size: 36px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1;
}
.quiz-result-pct {
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 700;
   margin-top: 4px;
}
.quiz-result-heading {
   font-family: 'Outfit', sans-serif;
   font-size: 24px;
   font-weight: 800;
   color: #0f172a;
   margin: 0 0 8px;
}
.quiz-result-sub { font-size: 14.5px; color: #64748b; margin: 0 0 22px; }
.quiz-result-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
   margin: 0 0 26px;
}
@media (max-width: 480px) { .quiz-result-stats { grid-template-columns: 1fr; } }
.quiz-result-stat {
   padding: 16px;
   background: #f8fafc;
   border-radius: 12px;
   border: 1px solid #eef2f7;
}
.quiz-result-stat-num {
   font-family: 'Outfit', sans-serif;
   font-size: 24px;
   font-weight: 800;
   line-height: 1;
}
.quiz-result-stat-num.is-correct { color: #16a34a; }
.quiz-result-stat-num.is-wrong { color: #dc2626; }
.quiz-result-stat-num.is-skipped { color: #94a3b8; }
.quiz-result-stat-label {
   font-family: 'Inter', sans-serif;
   font-size: 11.5px;
   color: #64748b;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-top: 6px;
}
.quiz-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.centre-gallery-block .pg-item { aspect-ratio: 1 / 1; border-radius: 12px; }

/* ============================================================
   Web Stories — thumbnail cards + fullscreen reels viewer
   (replaces the old auto-playing inline carousel)
   ============================================================ */

/* Auto-rotating coverflow-style carousel — the centered slide is
   raised (translated up + scaled up), neighbours sit lower + dimmer. */
.web-story-sec { padding: 56px 0 64px; overflow: hidden; }
.web-stories-swiper { padding: 48px 0 36px !important; overflow: visible !important; }
.web-stories-swiper .swiper-slide {
   transition: transform 0.55s cubic-bezier(.22,.61,.36,1),
               opacity 0.4s ease,
               filter 0.4s ease;
   transform: scale(0.78) translateY(24px);
   opacity: 0.55;
   filter: saturate(0.85) brightness(0.92);
}
.web-stories-swiper .swiper-slide-prev,
.web-stories-swiper .swiper-slide-next {
   transform: scale(0.88) translateY(8px);
   opacity: 0.78;
   filter: saturate(0.95) brightness(0.96);
}
.web-stories-swiper .swiper-slide-active {
   transform: scale(1.08) translateY(-22px);
   opacity: 1;
   filter: none;
   z-index: 2;
}
.web-stories-swiper .swiper-slide-active .story-card--thumb {
   box-shadow: 0 35px 70px -18px rgba(229, 27, 35, 0.50),
               0 12px 26px -12px rgba(15, 23, 42, 0.45);
}

@media (max-width: 768px) {
   .web-stories-swiper { padding: 30px 0 28px !important; }
   .web-stories-swiper .swiper-slide-active { transform: scale(1.04) translateY(-10px); }
}

/* Thumbnail card on the homepage carousel */
.story-card.story-card--thumb {
   position: relative;
   display: block;
   width: 100%;
   aspect-ratio: 9 / 16;
   border: 0;
   padding: 0;
   margin: 0;
   border-radius: 18px;
   overflow: hidden;
   cursor: pointer;
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
   box-shadow: 0 20px 40px -22px rgba(15, 23, 42, 0.35);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
   font-family: inherit;
}
.story-card.story-card--thumb:hover {
   transform: translateY(-4px) scale(1.015);
   box-shadow: 0 26px 50px -22px rgba(15, 23, 42, 0.45);
}
.story-card--thumb .story-thumb {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
   transition: transform 0.45s ease, filter 0.25s ease;
}
.story-card--thumb:hover .story-thumb { transform: scale(1.05); }
.story-card--thumb::before {
   /* darken overlay so title is readable */
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.65) 100%);
   z-index: 2;
   pointer-events: none;
}

/* Big play bubble in the centre */
.story-card--thumb .story-play-bubble {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%, -50%);
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.95);
   color: #e51b23;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 3;
   font-size: 18px;
   box-shadow: 0 12px 30px -6px rgba(229, 27, 35, 0.45);
   transition: transform 0.2s ease, background 0.2s ease;
}
.story-card--thumb .story-play-bubble i { margin-left: 3px; } /* optical centre */
.story-card--thumb:hover .story-play-bubble {
   transform: translate(-50%, -50%) scale(1.08);
   background: #ffffff;
}

.story-card--thumb .story-overlay {
   position: absolute;
   left: 0; right: 0; bottom: 0;
   padding: 14px 16px 16px;
   z-index: 3;
   text-align: left;
   color: #ffffff;
}
.story-card--thumb .story-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: rgba(229, 27, 35, 0.92);
   color: #fff;
   font-family: 'Outfit', sans-serif;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   padding: 4px 10px;
   border-radius: 999px;
   margin-bottom: 8px;
}
.story-card--thumb .story-badge .live-dot {
   width: 6px; height: 6px; border-radius: 50%;
   background: #fff; animation: storyDot 1.2s infinite;
}
@keyframes storyDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.story-card--thumb .story-title {
   font-family: 'Outfit', sans-serif;
   font-size: 14px;
   font-weight: 700;
   line-height: 1.35;
   color: #ffffff;
   margin: 0 0 6px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.story-card--thumb .story-meta {
   font-family: 'Inter', sans-serif;
   font-size: 11px;
   color: rgba(255, 255, 255, 0.85);
   display: inline-flex;
   align-items: center;
   gap: 5px;
}

/* ============================================================
   Reels Viewer modal — TikTok / Instagram-Reels-style vertical feed
   ============================================================ */
.reels-viewer {
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: none;
   opacity: 0;
   transition: opacity 0.18s ease;
}
/* IMPORTANT: do NOT use flex with align-items: center here. A flex item's
   default `min-height: auto` overrides our `height: 100vh` on .reels-feed,
   which made the feed grow to its content height — so overflow:scroll had
   nothing to scroll. Using `display: block` keeps the feed a normal block
   element and its overflow:scroll works correctly. */
.reels-viewer.is-open { display: block; opacity: 1; }
body.reels-open { overflow: hidden; }
.reels-viewer-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(15, 23, 42, 0.92);
   backdrop-filter: blur(8px);
}

/* Global close button — top-right of viewer */
.reels-close-btn-global {
   position: fixed;
   top: 18px;
   right: 18px;
   z-index: 10001;
   width: 40px; height: 40px;
   display: inline-flex; align-items: center; justify-content: center;
   background: rgba(255, 255, 255, 0.18);
   color: #fff;
   border: 0;
   border-radius: 50%;
   cursor: pointer;
   font-size: 16px;
   transition: background 0.15s ease, transform 0.18s ease;
}
.reels-close-btn-global:hover { background: rgba(255, 255, 255, 0.35); transform: scale(1.05); }

/* Side arrows (chevron up / down — vertical nav) */
.reels-arrow {
   position: fixed;
   left: 50%;
   transform: translateX(-50%);
   width: 44px; height: 44px;
   display: flex; align-items: center; justify-content: center;
   background: rgba(255, 255, 255, 0.18);
   color: #fff;
   border: 0;
   border-radius: 50%;
   cursor: pointer;
   font-size: 16px;
   transition: background 0.15s ease, transform 0.18s ease;
   z-index: 10000;
}
.reels-arrow:hover { background: rgba(255, 255, 255, 0.35); }
.reels-arrow-prev { top: 80px; }
.reels-arrow-next { bottom: 24px; }
@media (max-width: 640px) {
   .reels-arrow { display: none; }
}

/* ----- The scrollable vertical feed ----- */
.reels-feed {
   position: relative;
   z-index: 1;
   width: min(100%, 420px);
   height: 100vh;
   margin: 0 auto;          /* centre horizontally in the .reels-viewer block */
   overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
   overscroll-behavior: contain;
   scroll-snap-type: y mandatory;
   scroll-behavior: smooth;
   scrollbar-width: none;
   -ms-overflow-style: none;
}
.reels-feed::-webkit-scrollbar { display: none; }
@media (max-width: 640px) {
   .reels-feed { width: 100vw; }
}

/* Each pane = one full-height story (snap target) */
.reels-pane {
   position: relative;
   width: 100%;
   height: 100vh;
   scroll-snap-align: start;
   scroll-snap-stop: normal; /* allow natural mouse-wheel inertia */
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 8px 0;
   box-sizing: border-box;
}
.reels-pane-stage {
   position: relative;
   width: 100%;
   height: calc(100vh - 16px);
   max-height: 92vh;
   aspect-ratio: 9 / 16;
   margin: 0 auto;
   background: #000;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65);
}
@media (max-width: 640px) {
   .reels-pane { padding: 0; height: 100vh; }
   .reels-pane-stage { height: 100vh; max-height: 100vh; border-radius: 0; }
}

/* Poster placeholder behind the player (visible until iframe mounts) */
.reels-pane-poster {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
   filter: brightness(0.6);
}
.reels-pane-player {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
}
.reels-pane-player iframe,
.reels-pane-player video {
   width: 100% !important;
   height: 100% !important;
   border: 0;
   object-fit: cover;
}

/* Pane progress bar */
.reels-pane-progress {
   position: absolute;
   top: 12px;
   left: 16px;
   right: 16px;
   height: 3px;
   background: rgba(255, 255, 255, 0.25);
   border-radius: 999px;
   overflow: hidden;
   z-index: 5;
}
.reels-pane-progress-fill {
   height: 100%;
   width: 0%;
   background: #fff;
   transition: width 0.2s linear;
}

/* Info overlay (bottom-left) */
.reels-pane-info {
   position: absolute;
   left: 0;
   right: 80px; /* leave room for the action stack on the right */
   bottom: 0;
   padding: 22px 22px 26px;
   z-index: 5;
   background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
   color: #fff;
}
.reels-badge {
   display: inline-flex;
   align-items: center;
   background: rgba(229, 27, 35, 0.92);
   color: #fff;
   font-family: 'Outfit', sans-serif;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   padding: 4px 10px;
   border-radius: 999px;
   margin-bottom: 8px;
}
.reels-title {
   font-family: 'Outfit', sans-serif;
   font-size: 16px;
   font-weight: 700;
   line-height: 1.35;
   color: #ffffff;
   margin: 0 0 6px;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.reels-meta {
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: rgba(255, 255, 255, 0.85);
   display: inline-flex;
   align-items: center;
   gap: 5px;
}

/* Right-side action stack (per-pane) */
.reels-pane-actions {
   position: absolute;
   right: 14px;
   bottom: 28px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   align-items: center;
   z-index: 6;
}
.reels-action-btn {
   width: 44px; height: 44px;
   display: inline-flex; align-items: center; justify-content: center;
   background: rgba(255, 255, 255, 0.18);
   color: #fff;
   border: 0;
   border-radius: 50%;
   cursor: pointer;
   font-size: 16px;
   text-decoration: none;
   transition: background 0.15s ease, transform 0.18s ease;
   backdrop-filter: blur(6px);
}
.reels-action-btn:hover { background: rgba(255, 255, 255, 0.32); transform: scale(1.08); color: #fff; }
.reels-action-btn.reels-yt-link:hover { background: #e51b23; }

/* Mind Map / Infographics — card grid (PDF-only items, no cover) */
.info-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 24px;
}
.info-card {
   position: relative;
   display: flex;
   flex-direction: column;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 16px;
   text-decoration: none;
   color: inherit;
   overflow: hidden;
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.info-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 24px 44px -24px rgba(15, 23, 42, 0.22);
   border-color: #e2e8f0;
   color: inherit;
}
.info-card-head {
   position: relative;
   aspect-ratio: 16 / 9;
   background: linear-gradient(135deg, #fff5f5 0%, #ffe4e4 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}
.info-card-head::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
      radial-gradient(circle at 18% 22%, rgba(229, 27, 35, 0.15) 0, transparent 35%),
      radial-gradient(circle at 82% 78%, rgba(229, 27, 35, 0.10) 0, transparent 40%);
   pointer-events: none;
}
.info-card-icon {
   width: 64px;
   height: 64px;
   border-radius: 16px;
   background: #ffffff;
   color: #e51b23;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
   box-shadow: 0 14px 30px -16px rgba(229, 27, 35, 0.45);
   position: relative;
   z-index: 1;
   transition: transform 0.25s ease;
}
.info-card:hover .info-card-icon { transform: scale(1.06) rotate(-3deg); }
.info-card-pdf-badge {
   position: absolute;
   top: 12px;
   right: 12px;
   z-index: 2;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   padding: 4px 9px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.92);
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 10.5px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
}
.info-card-pdf-badge i { font-size: 10px; }
.info-card-body {
   padding: 18px 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   flex: 1;
}
.info-card-title {
   font-family: 'Outfit', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1.35;
   margin: 0;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.info-card-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 600;
}
.info-card-meta i { color: #e51b23; font-size: 11px; }
.info-card-cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #e51b23;
}
.info-card-cta i { font-size: 11px; transition: transform 0.18s ease; }
.info-card:hover .info-card-cta i { transform: translateX(3px); }
.info-search-row {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 26px;
   flex-wrap: wrap;
}
.info-search-row .pro-filter-count-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 12px;
   border-radius: 999px;
   background: #f8fafc;
   border: 1px solid #eef2f7;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: #475569;
   font-weight: 600;
}
.info-search-row .pro-filter-count-pill strong { color: #0f172a; font-weight: 800; }
.info-search-row .pro-filter-count-pill i { color: #e51b23; font-size: 11px; }
.info-search-row .initiative-search.info-search-input-wrap {
   flex: 1 1 200px;
   min-width: 0;
   max-width: 280px;
}
.info-search-row .initiative-search input { height: 36px; }
.info-date-range {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 8px;
   border-radius: 999px;
   background: #f8fafc;
   border: 1px solid #eef2f7;
   font-family: 'Inter', sans-serif;
}
.info-date {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   color: #475569;
   font-weight: 600;
   margin: 0;
}
.info-date-label { color: #94a3b8; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.6px; }
.info-date input[type="date"] {
   width: 130px;
   border: 0;
   background: transparent;
   font-family: inherit;
   font-size: 13px;
   font-weight: 600;
   color: #0f172a;
   padding: 4px 0;
   outline: none;
   cursor: pointer;
}
.info-date input[type="date"]::-webkit-calendar-picker-indicator {
   cursor: pointer;
   opacity: 0.7;
   filter: invert(15%) sepia(85%) saturate(3000%) hue-rotate(355deg);
}
.info-date-sep { color: #cbd5e1; font-weight: 700; padding: 0 2px; }
.info-sort {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 12px;
   border-radius: 999px;
   background: #ffffff;
   border: 1px solid #e2e8f0;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: #475569;
   font-weight: 600;
   position: relative;
}
.info-sort > i:first-child { color: #e51b23; font-size: 11px; }
.info-sort select {
   width: auto;
   border: 0;
   background: transparent;
   font-family: inherit;
   font-size: 13px;
   font-weight: 600;
   color: #0f172a;
   padding: 2px 18px 2px 0;
   outline: none;
   cursor: pointer;
   appearance: none;
   -webkit-appearance: none;
}
.info-search-row button { width: auto; }
.info-sort-caret { color: #94a3b8; font-size: 10px; position: absolute; right: 12px; pointer-events: none; }
.info-clear-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 12px;
   border-radius: 999px;
   background: #fff1f2;
   border: 1px solid #fecaca;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 12.5px;
   font-weight: 700;
   cursor: pointer;
   white-space: nowrap;
}
.info-clear-btn:hover { background: #fee2e2; }
.info-clear-btn i { font-size: 11px; }

@media (max-width: 991px) {
   .info-search-row { row-gap: 10px; }
   .info-search-row .initiative-search.info-search-input-wrap { max-width: none; flex: 1 1 100%; }
   .info-date-range { flex: 1 1 100%; justify-content: space-between; }
}
@media (max-width: 575px) {
   .info-grid { grid-template-columns: 1fr; }
   .info-date input[type="date"] { width: 110px; }
}

/* Lecture Plan Subjects — subject card grid */
.subject-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 24px;
}
.subject-card {
   position: relative;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 28px 26px 24px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
   overflow: hidden;
}
.subject-card::before {
   content: "";
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 4px;
   background: linear-gradient(90deg, #e51b23 0%, #ff6a52 100%);
   opacity: 0.85;
}
.subject-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 26px 50px -28px rgba(15, 23, 42, 0.22);
   border-color: #e2e8f0;
}
.subject-card-head {
   display: flex;
   align-items: center;
   gap: 14px;
}
.subject-card-icon {
   width: 52px;
   height: 52px;
   border-radius: 14px;
   background: #fff1f2;
   color: #e51b23;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   flex-shrink: 0;
}
.subject-card-name {
   font-family: 'Outfit', sans-serif;
   font-size: 19px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1.25;
   margin: 0;
}
.subject-card-stats {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: #64748b;
   font-weight: 600;
   padding: 12px 14px;
   background: #f8fafc;
   border-radius: 10px;
}
.subject-card-stat {
   display: inline-flex;
   align-items: center;
   gap: 6px;
}
.subject-card-stat strong { color: #0f172a; font-weight: 800; }
.subject-card-stat i { color: #e51b23; }
.subject-card-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: auto;
}
.subject-card-action {
   display: inline-flex;
   align-items: center;
   justify-content: space-between;
   padding: 11px 14px;
   border-radius: 10px;
   background: #f8fafc;
   border: 1px solid #eef2f7;
   color: #0f172a;
   text-decoration: none;
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 14px;
   transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.subject-card-action:hover {
   background: #e51b23;
   border-color: #e51b23;
   color: #ffffff;
}
.subject-card-action i { font-size: 12px; transition: transform 0.18s ease; }
.subject-card-action:hover i { transform: translateX(3px); }
.subject-card-action.is-empty {
   opacity: 0.5;
   pointer-events: none;
   font-weight: 600;
}
@media (max-width: 575px) {
   .subject-grid { grid-template-columns: 1fr; }
   .subject-card { padding: 22px 20px 20px; }
}

/* Rajasthan Economic Survey — edition cards */
.eco-editions {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 32px;
   margin: 8px 0 28px;
}
.eco-edition {
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   box-shadow: 0 24px 50px -36px rgba(15, 23, 42, 0.18);
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.eco-edition:hover {
   transform: translateY(-3px);
   box-shadow: 0 30px 56px -32px rgba(15, 23, 42, 0.24);
   border-color: #e2e8f0;
}
.eco-edition-lang {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   align-self: flex-start;
   padding: 6px 12px;
   border-radius: 999px;
   background: #fff1f2;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-size: 11.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.7px;
}
.eco-edition-lang.is-hindi { background: #ecfeff; color: #0e7490; }
.eco-edition-cover {
   position: relative;
   border-radius: 12px;
   overflow: hidden;
   background: #f8fafc;
   border: 1px solid #eef2f7;
}
.eco-edition-cover img {
   display: block;
   width: 100%;
   height: auto;
   max-height: 520px;
   object-fit: contain;
}
.eco-edition-title {
   font-family: 'Outfit', sans-serif;
   font-size: clamp(18px, 1.8vw, 22px);
   font-weight: 800;
   color: #0f172a;
   line-height: 1.3;
   margin: 0;
}
.eco-edition-meta {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   color: #64748b;
   font-weight: 600;
}
.eco-edition-meta i { color: #e51b23; margin-right: 6px; }
.eco-edition-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: auto;
}
.eco-info {
   background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 26px 30px;
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 22px;
   align-items: center;
   margin-bottom: 36px;
}
.eco-info-icon {
   width: 52px;
   height: 52px;
   border-radius: 14px;
   background: #fff1f2;
   color: #e51b23;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
}
.eco-info h3 {
   font-family: 'Outfit', sans-serif;
   font-size: 17px;
   font-weight: 800;
   color: #0f172a;
   margin: 0 0 4px;
}
.eco-info p {
   font-family: 'Inter', sans-serif;
   font-size: 14px;
   color: #475569;
   line-height: 1.55;
   margin: 0;
}
@media (max-width: 768px) {
   .eco-editions { grid-template-columns: 1fr; gap: 22px; }
   .eco-edition { padding: 20px; }
   .eco-info { grid-template-columns: 1fr; padding: 20px; gap: 14px; }
}

/* Monthly Magazine — single-row filter bar */
.mag-filter-row {
   display: flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
   row-gap: 10px;
   padding-bottom: 14px;
}
.mag-filter-row .pro-chip,
.mag-filter-row .pro-filter-clear,
.mag-filter-row select { width: auto; }
.mag-filter-row .pro-chip {
   padding: 7px 12px;
   font-size: 12.5px;
   border-radius: 999px;
}
.mag-filter-row .pro-chip-count {
   min-width: 20px;
   padding: 1px 6px;
   font-size: 10.5px;
}
.mag-filter-count-inline {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 12px;
   border-radius: 999px;
   background: #f8fafc;
   border: 1px solid #eef2f7;
   font-family: 'Inter', sans-serif;
   font-size: 12.5px;
   color: #475569;
   font-weight: 600;
   white-space: nowrap;
}
.mag-filter-count-inline strong { color: #0f172a; font-weight: 800; }
.mag-filter-count-inline i { color: #e51b23; font-size: 11px; }
.mag-filter-tools {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: nowrap;
   flex: 1 1 auto;
   margin-left: auto;
   min-width: 0;
}
.mag-filter-tools .initiative-search {
   min-width: 0;
   flex: 1 1 auto;
}
.mag-filter-tools .initiative-search input {
   height: 36px;
   padding-top: 6px;
   padding-bottom: 6px;
   font-size: 13px;
}
.mag-filter-tools .pro-filter-sort {
   padding: 6px 12px;
   font-size: 13px;
}
.mag-filter-tools .pro-filter-sort select { font-size: 13px; }
.mag-filter-tools .pro-filter-clear {
   padding: 7px 12px;
   font-size: 12.5px;
}
@media (max-width: 991px) {
   .mag-filter-row { flex-wrap: wrap; }
   .mag-filter-tools { margin-left: 0; width: 100%; }
   .mag-filter-tools .initiative-search { flex: 1 1 auto; }
}
@media (max-width: 575px) {
   .mag-filter-tools { flex-wrap: wrap; }
   .mag-filter-tools .pro-filter-sort,
   .mag-filter-tools .initiative-search { flex: 1 1 100%; }
}

/* Monthly Magazine — portrait-cover card variant */
.magazine-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
   gap: 26px;
   margin-top: 6px;
}
.magazine-card {
   display: flex;
   flex-direction: column;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 16px;
   overflow: hidden;
   text-decoration: none;
   color: inherit;
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.magazine-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 24px 44px -24px rgba(15, 23, 42, 0.22);
   border-color: #e2e8f0;
   color: inherit;
}
.magazine-card-cover {
   position: relative;
   aspect-ratio: 3 / 4;
   overflow: hidden;
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.magazine-card-cover img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease;
}
.magazine-card:hover .magazine-card-cover img { transform: scale(1.04); }
.magazine-card-cover::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.55) 100%);
   pointer-events: none;
}
.magazine-card-lang {
   position: absolute;
   top: 12px;
   left: 12px;
   z-index: 2;
   font-family: 'Outfit', sans-serif;
   font-size: 10.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   padding: 5px 10px;
   border-radius: 999px;
   color: #fff;
   background: rgba(229, 27, 35, 0.95);
   backdrop-filter: blur(6px);
}
.magazine-card-lang.is-hindi { background: rgba(14, 116, 144, 0.95); }
.magazine-card-pdf {
   position: absolute;
   top: 12px;
   right: 12px;
   z-index: 2;
   width: 30px;
   height: 30px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.92);
   color: #e51b23;
   font-size: 13px;
}
.magazine-card-body {
   padding: 16px 16px 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1;
}
.magazine-card-title {
   font-family: 'Outfit', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #0f172a;
   line-height: 1.35;
   margin: 0;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.magazine-card-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   color: #64748b;
   font-weight: 600;
}
.magazine-card-meta i { color: #e51b23; font-size: 11px; }
.magazine-card-cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 14px;
   border-radius: 10px;
   background: #fff5f5;
   color: #e51b23;
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 13px;
   transition: background 0.18s ease, color 0.18s ease;
}
.magazine-card:hover .magazine-card-cta { background: #e51b23; color: #fff; }
.magazine-card-cta i { font-size: 12px; }

/* Featured magazine — horizontal layout with large cover on the left */
.magazine-featured {
   display: grid;
   grid-template-columns: minmax(220px, 320px) 1fr;
   gap: 32px;
   background: #ffffff;
   border: 1px solid #eef2f7;
   border-radius: 18px;
   padding: 28px;
   margin-bottom: 36px;
   align-items: center;
   text-decoration: none;
   color: inherit;
   box-shadow: 0 28px 60px -38px rgba(15, 23, 42, 0.18);
}
.magazine-featured:hover { color: inherit; }
.magazine-featured-cover {
   position: relative;
   aspect-ratio: 3 / 4;
   border-radius: 12px;
   overflow: hidden;
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
   box-shadow: 0 22px 38px -20px rgba(15, 23, 42, 0.4);
}
.magazine-featured-cover img { width: 100%; height: 100%; object-fit: cover; }
.magazine-featured-body { display: flex; flex-direction: column; gap: 14px; }
.magazine-featured-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-family: 'Outfit', sans-serif;
   font-size: 11.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 1.1px;
   color: #e51b23;
}
.magazine-featured-title {
   font-family: 'Outfit', sans-serif;
   font-size: clamp(22px, 2.6vw, 30px);
   font-weight: 800;
   color: #0f172a;
   line-height: 1.25;
   margin: 0;
}
.magazine-featured-meta {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   color: #64748b;
   font-weight: 600;
}
.magazine-featured-meta i { color: #e51b23; margin-right: 6px; }
.magazine-featured-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.magazine-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 10px;
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 14px;
   text-decoration: none;
   transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.magazine-btn.is-primary { background: #e51b23; color: #fff; box-shadow: 0 12px 24px -14px rgba(229, 27, 35, 0.6); }
.magazine-btn.is-primary:hover { background: #c91219; color: #fff; transform: translateY(-2px); }
.magazine-btn.is-ghost { background: #f8fafc; color: #0f172a; border: 1px solid #e2e8f0; }
.magazine-btn.is-ghost:hover { background: #eef2f7; color: #0f172a; }
@media (max-width: 768px) {
   .magazine-featured { grid-template-columns: 1fr; padding: 20px; gap: 22px; }
   .magazine-featured-cover { max-width: 240px; margin: 0 auto; }
   .magazine-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
   .magazine-card-body { padding: 14px; }
   .magazine-card-title { font-size: 14px; }
}

/* Skip-to-content link — hidden off-screen by default, becomes a visible
   pill in the top-left corner when focused via Tab key. Keyboard and
   screen-reader users can use this to bypass the nav on every page. */
.samyak-skip-link {
   position: absolute;
   top: 12px;
   left: 12px;
   z-index: 9999;
   padding: 10px 18px;
   background: #0f172a;
   color: #ffffff;
   font-family: 'Outfit', sans-serif;
   font-size: 13px;
   font-weight: 700;
   border-radius: 999px;
   text-decoration: none;
   box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.40);
   transform: translateY(-200%);
   transition: transform 0.18s ease;
}
.samyak-skip-link:focus,
.samyak-skip-link:focus-visible {
   transform: translateY(0);
   outline: 3px solid #ff4b51;
   outline-offset: 2px;
   color: #ffffff;
}
/* Don't let the focused <main> show a default focus outline — the skip-link
   already announced the jump. */
#main-content:focus { outline: none; }
}