/* ===== KIPPRA CONFERENCE 2026 - CLEANED & FIXED CSS ===== */

/* ===== ROOT / BRAND COLORS ===== */
:root {
    --kippra-navy: #0a2240;
    --kippra-navy-dark: #081a33;
    --kippra-navy-light: #123765;

    --kippra-green: #2e7d32;
    --kippra-green-light: #4caf50;
    --kippra-green-lighter: #e8f5e9;

    --kippra-red: #c62828;
    --kippra-red-light: #f44336;
    --kippra-red-lighter: #ffebee;

    --kippra-gold: #ffd700;
    --kippra-white: #ffffff;
    --kippra-off-white: #f8f6f0;

    --text-dark: #1a1a2e;
    --text-muted: #6b7a8d;
    --border: rgba(46, 125, 50, 0.2);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Nunito Sans', sans-serif;
    background: var(--kippra-off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.stat-num,
.footer-brand,
.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--kippra-gold);
}

/* ===== NAVBAR ===== */
#mainNav {
    background: #f0e1d5;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.15);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.3rem 0;
}

#mainNav .nav-link {
    color: #f25f4b !important;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s ease;
    position: relative;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--kippra-green);
    transition: all 0.3s ease;
}

#mainNav .nav-link:hover {
    color: var(--kippra-green) !important;
}

#mainNav .nav-link:hover::after {
    left: 0.75rem;
    right: 0.75rem;
}

#mainNav .dropdown-menu {
    background: var(--kippra-navy);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

#mainNav .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

#mainNav .dropdown-item:hover {
    background: rgba(46, 125, 50, 0.15);
    color: var(--kippra-green);
}

.navbar-toggler {
    border-color: var(--kippra-green);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846,125,50,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-register {
    background: var(--kippra-green);
    color: var(--kippra-white) !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 2px solid var(--kippra-green);
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.btn-register:hover {
    background: #1b5e20;
    border-color: #1b5e20;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(10,34,64,0.75), rgba(10,34,64,0.75)),
        url('/static/images/header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(13, 47, 96, 0.4) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.4);
    color: var(--kippra-gold);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #f25f4b;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-theme {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.theme-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0a2240;
    background: linear-gradient(135deg, #b9edda, #13f09f);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    box-shadow:
        0 4px 12px rgba(19, 240, 159, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.hero-date-box {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.date-item i {
    color: var(--kippra-green);
    font-size: 1.1rem;
    margin-right: 0.4rem;
}

.date-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--kippra-red);
    color: white;
    font-weight: 800;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background: #a61f1f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.35);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-hero-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-1px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--kippra-green);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

/* ===== COUNTDOWN BAR ===== */
.countdown-bar {
    position: sticky;
    top: 70px;
    z-index: 1000;
    padding: 0.9rem 0;
    background: linear-gradient(135deg, #edf5f1, #f7fbf9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.countdown-left {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.countdown-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f3d2e;
    opacity: 0.7;
}

.countdown-label {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #0b1f16;
    text-transform: uppercase;
}

.countdown-units {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.countdown-unit {
    text-align: center;
    padding: 0.3rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    min-width: 60px;
}

.countdown-unit span {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    color: #0b1f16;
}

.countdown-unit small {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.65;
    letter-spacing: 0.06em;
}

.countdown-sep {
    font-size: 1.4rem;
    font-weight: 900;
    opacity: 0.35;
    padding-bottom: 6px;
}

.countdown-right .btn-gold-sm {
    background: linear-gradient(135deg, #c9a227, #e0c15a);
    color: #111;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.25);
    transition: all 0.25s ease;
    animation: blinkPulse 1.6s infinite;
}

@keyframes blinkPulse {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(201, 162, 39, 0.25);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.05);
        box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(201, 162, 39, 0.25);
    }
}

.countdown-right .btn-gold-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

@media (max-width: 768px) {
    .countdown-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .countdown-units {
        justify-content: center;
    }
}

.btn-gold-sm {
    background: var(--kippra-gold);
    color: black;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-gold-sm:hover {
    background: #e6c200;
    transform: translateY(-1px);
    color: black;
}

/* ===== GENERAL SECTIONS ===== */
.section-pad {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(46, 125, 50, 0.12);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #1b5e20;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-tag.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--kippra-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--kippra-green);
    margin-top: 0.8rem;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle,
.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-text {
    margin-bottom: 1rem;
}

.section-subtitle {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--kippra-off-white);
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--kippra-navy);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    min-width: 110px;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--kippra-green);
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10, 34, 64, 0.25);
    transition: transform 0.4s ease;
    width: 100%;
    display: block;
}

.about-img:hover {
    transform: scale(1.02);
}

.img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--kippra-green);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== SUBTHEMES SECTION ===== */
.subthemes-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46, 125, 50, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
    pointer-events: none;
}

/* ===== SUBTHEME CARDS ===== */
.theme-card {
    background: #ffffff;
    border: 1px solid rgba(10, 34, 64, 0.07);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10,34,64,0.13);
    border-color: rgba(200, 169, 81, 0.35);
}

.theme-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.theme-card:hover::before {
    opacity: 1;
}

.theme-card-inner {
    padding: 1.8rem 1.8rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-accent-bar {
    height: 4px;
    width: 100%;
    transition: height 0.3s ease;
}

.theme-card:hover .theme-accent-bar {
    height: 6px;
}

.theme-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.theme-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.theme-label-tag {
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    opacity: 0.85;
}

.theme-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--kippra-navy);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.theme-desc {
    font-size: 0.875rem;
    color: rgba(0,0,0,0.55);
    line-height: 1.7;
    flex: 1;
}

.theme-infographic-count {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--kippra-green);
    background: var(--kippra-green-lighter);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.9rem;
    width: fit-content;
}

.theme-count-empty {
    color: var(--text-muted);
    background: rgba(0,0,0,0.05);
}

.theme-cta {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--kippra-navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.theme-card:hover .theme-cta {
    opacity: 1;
    transform: translateY(0);
}

.theme-cta i {
    font-size: 1rem;
}

/* ===== THEME INFOGRAPHIC MODAL ===== */
.theme-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 40, 0.75);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.theme-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.theme-modal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.theme-modal-overlay.active .theme-modal {
    transform: translateY(0) scale(1);
}

.theme-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.theme-modal-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.theme-modal-label {
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin: 0 0 0.2rem;
}

.theme-modal-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--kippra-navy);
    margin: 0;
    line-height: 1.2;
}

.theme-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.04);
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.theme-modal-close:hover {
    background: var(--kippra-red);
    border-color: var(--kippra-red);
    color: white;
}

/* ===== MODAL BODY ===== */
.theme-modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--kippra-green) transparent;
}

.theme-modal-body::-webkit-scrollbar { width: 5px; }
.theme-modal-body::-webkit-scrollbar-thumb {
    background: var(--kippra-green);
    border-radius: 3px;
}

/* ===== INFOGRAPHIC SLIDER ===== */
.infographic-slider-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.infographic-slides {
    display: flex;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.infographic-slide {
    position: relative;
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== INFOGRAPHIC IMAGE PREVIEW ===== */
.infographic-img-wrap {
    overflow-y: auto;
    max-height: 560px;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    scrollbar-width: thin;
    scrollbar-color: var(--kippra-green) transparent;
}

.infographic-img-wrap::-webkit-scrollbar { width: 5px; }
.infographic-img-wrap::-webkit-scrollbar-thumb {
    background: var(--kippra-green);
    border-radius: 3px;
}

.infographic-preview-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    object-fit: contain;
    object-position: top;
}

.infographic-slide-caption {
    background: white;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--kippra-navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: var(--kippra-navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: var(--kippra-green);
    color: white;
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

/* ===== DOTS + DOWNLOAD ROW ===== */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--kippra-green);
    width: 22px;
    border-radius: 4px;
}

.btn-infographic-download {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--kippra-navy);
    color: white;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.btn-infographic-download:hover {
    background: var(--kippra-green);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(46,125,50,0.3);
}

/* ===== COMING SOON STATE ===== */
.theme-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.theme-coming-soon i {
    font-size: 3rem;
    color: var(--kippra-gold);
    display: block;
    margin-bottom: 1rem;
}

.theme-coming-soon h4 {
    font-weight: 900;
    color: var(--kippra-navy);
    margin-bottom: 0.5rem;
}

.theme-coming-soon p {
    font-size: 0.9rem;
    max-width: 360px;
    margin: 0 auto;
}

/* ===== PROGRAM SECTION ===== */
.program-section {
    position: relative;
    background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
}

.section-tag.light {
    background: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.2);
    color: #2e7d32;
    font-weight: 800;
}

.section-title.light {
    color: #0b1f16;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.program-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
    border-color: rgba(46, 125, 50, 0.25);
}

.program-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.4rem;
}

.program-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
}

.program-details {
    flex: 1;
    min-width: 0;
}

.program-details h5 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b1f16;
    margin: 0;
}

.program-filename {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.55);
    margin: 0.2rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.program-actions {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== DOWNLOAD BUTTON ===== */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--kippra-green);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.45rem 1.1rem;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-download:hover {
    background: #1b5e20;
    color: white;
    transform: translateY(-1px);
}

/* ===== PREVIEW PANEL ===== */
.program-preview-panel {
    border-top: 1px solid rgba(46, 125, 50, 0.15);
    background: #f5f5f5;
    animation: slideDown 0.3s ease;
    width: 100%;
    display: block;
    overflow: hidden;
}

.preview-object {
    display: block;
    width: 100%;
    height: 680px;
    border: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== PDF FALLBACK ===== */
.pdf-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    text-align: center;
    color: rgba(0,0,0,0.5);
    font-size: 0.9rem;
    background: #fafafa;
    min-height: 200px;
}

.pdf-fallback i {
    font-size: 3rem;
    color: #e53935;
    display: block;
}

.pdf-fallback p {
    margin: 0;
    font-weight: 500;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 20px;
}

.empty-state.light {
    background: rgba(46, 125, 50, 0.04);
    border: 1px dashed rgba(46, 125, 50, 0.25);
    color: rgba(0, 0, 0, 0.6);
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
    color: var(--kippra-green);
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f3f8f6 0%, #eaf3ef 40%, #fdfcf9 100%);
    overflow: hidden;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--kippra-navy);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(10, 34, 64, 0.75);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-main {
    background: var(--kippra-navy);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(10, 34, 64, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cta-main:hover {
    background: #0d3060;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 34, 64, 0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--kippra-navy);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

#lightboxCaption {
    color: white;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(160deg, #0a2240 0%, #0d2e50 60%, #0f3520 100%);
    color: white;
    position: relative;
}

.footer-wave svg {
    width: 100%;
    height: 50px;
    display: block;
}

.footer-main {
    padding: 3.5rem 0 2rem;
}

.footer-brand {
    font-size: 1.8rem;
    color: white;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.footer-brand-accent {
    color: var(--kippra-gold);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0.3rem 0 0.2rem;
    font-weight: 600;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.65;
}

.footer-section-title {
    color: var(--kippra-gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-links,
.footer-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-details li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a i {
    font-size: 0.65rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    color: var(--kippra-green-light);
    padding-left: 4px;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-details li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-details li i {
    color: var(--kippra-gold);
    width: 16px;
    flex-shrink: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    margin: 0;
}

/* ===== PARTNERS SECTION ===== */
.footer-partners {
    padding: 0.5rem 0 0.5rem;
    text-align: center;
}

.footer-partners-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    color: var(--kippra-gold);
    margin-bottom: 1.5rem;
}

.partners-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.partner-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.partner-logo-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    background: #ffffff;
}

.partner-logo-link img {
    height: 48px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* ===== GALLERY IMAGES ===== */
.gallery-section { background: var(--kippra-off-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    max-height: 800px;
    overflow-y: auto;
    padding: 0.5rem;
    border-radius: 12px;
}

.gallery-grid::-webkit-scrollbar { width: 6px; }
.gallery-grid::-webkit-scrollbar-track { background: rgba(10,34,64,0.05); border-radius: 3px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--kippra-gold); border-radius: 3px; }

.gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,34,64,0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: black;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    padding: 0.75rem 0.9rem;
    background: rgba(255,255,255,0.9);
    display: block;
    width: 100%;
}

.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(200,169,81,0.8);
    color: var(--kippra-navy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.btn-delete-item {
    background: rgba(198,40,40,0.9);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 12px;
    transition: background 0.2s;
    z-index: 5;
}

.btn-delete-item:hover { background: var(--kippra-red); }

/* ===== VIDEOS ===== */
.videos-section { background: white; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-height: 700px;
    overflow-y: auto;
    padding: 0.5rem;
}

.video-grid::-webkit-scrollbar { width: 6px; }
.video-grid::-webkit-scrollbar-thumb { background: var(--kippra-gold); border-radius: 3px; }

.video-card {
    background: white;
    border: 1px solid rgba(10,34,64,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.video-card:hover { transform: translateY(-4px); }

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.video-caption {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--kippra-navy);
    flex: 1;
}

.btn-delete-video {
    background: none;
    border: 1px solid var(--kippra-red);
    color: var(--kippra-red);
    border-radius: 50px;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-delete-video:hover {
    background: var(--kippra-red);
    color: white;
}

/* ===== LOGIN PAGE ===== */
.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbf9 0%, #eef5f1 100%);
}

.login-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 169, 81, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.10), transparent 45%);
    filter: blur(10px);
    opacity: 0.8;
    pointer-events: none;
}

.login-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
}

.login-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.login-shield {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    font-size: 1.5rem;
}

.login-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0b1f16;
    margin-top: 0.5rem;
}

.login-subtitle {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
    margin-bottom: 1.5rem;
}

.input-group-styled {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: #2e7d32;
    font-size: 1rem;
    opacity: 0.8;
}

.input-group-styled .form-control {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.input-group-styled .form-control:focus {
    outline: none;
    border-color: rgba(46, 125, 50, 0.4);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.btn-login-submit {
    width: 100%;
    padding: 0.75rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2e7d32, #3a9a3f);
    color: white;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
    transition: all 0.3s ease;
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.35);
}

.login-back {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.login-back a {
    color: rgba(0,0,0,0.6);
    text-decoration: none;
    transition: 0.3s ease;
}

.login-back a:hover {
    color: #2e7d32;
}

.alert {
    border-radius: 12px;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .login-card { padding: 2rem 1.5rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .section-pad { padding: 80px 0; }
    .hero-content { padding-top: 110px; }
    .hero-date-box { border-radius: 24px; padding: 1rem 1.25rem; }
    .countdown-bar { top: 65px; }
    .program-card-header { flex-wrap: wrap; }
    .program-actions { width: 100%; }
    .preview-object { height: 500px; }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.4rem; }
    .hero-theme { font-size: 1rem; }
    .hero-date-box { flex-direction: column; gap: 0.75rem; }
    .date-divider { width: 40px; height: 1px; }
    .about-stats { gap: 1rem; }
    .stat-card { flex: 1 1 calc(50% - 1rem); min-width: 120px; }
    .preview-object { height: 420px; }
    .btn-hero-primary,
    .btn-hero-outline,
    .btn-cta-main {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .section-pad { padding: 65px 0; }
    .hero-badge, .section-tag { font-size: 0.68rem; }
    .countdown-unit span { font-size: 1.2rem; }
    .program-card-header { padding: 1rem; }
    .preview-object { height: 320px; }
    .theme-modal { border-radius: 16px; max-height: 95vh; }
    .theme-modal-header { padding: 1rem; }
    .theme-modal-body { padding: 0.75rem; }
    .infographic-img-wrap { max-height: 420px; }
    .partners-logos-row { gap: 0.75rem; }
    .partner-logo-link img { height: 36px; max-width: 110px; }
}