@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --primary: #ff5722;
    --primary-hover: #e64a19;
    --primary-light: #fff3e0;
    --secondary: #ff9800;
    --accent: #fb8500;
    --accent-yellow: #ffb703;
    --dark: #0b132b;
    --dark-card: #1c2541;
    --dark-sub: #3a506b;
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --gradient-orange: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
    --gradient-hero: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #ff5722 150%);
    --gradient-dark: linear-gradient(180deg, #0b132b 0%, #17213c 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(255, 87, 34, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    background-color: #ffffff !important;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: #fcfbf8 !important;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Top Bar */
.top-bar {
    background: #5a1014;
    color: #ffd700;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}
.top-bar a {
    color: #ffffff;
}
.top-bar a:hover {
    color: #ffb703;
}

/* Navbar */
.main-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-navbar.scrolled {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 8px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark) !important;
}
.navbar-brand .logo-badge {
    width: 44px;
    height: 44px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
}
.navbar-brand .brand-text span {
    color: var(--primary);
}
.site-main-logo {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.navbar-brand:hover .site-main-logo {
    transform: scale(1.03);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.desktop-nav .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155 !important;
    padding: 7px 14px !important;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap !important;
    display: inline-block;
}
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

/* Mobile App-Style Drawer (Left to Right) */
.mobile-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-toggle-btn:active {
    background: var(--primary-light);
}
.mobile-app-drawer {
    max-width: 320px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.15);
    border: none;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
}
.mobile-nav-link .nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.mobile-nav-link .arrow-icon {
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}
.mobile-nav-link:hover .nav-icon, .mobile-nav-link.active .nav-icon {
    background: var(--primary);
    color: white;
}
.mobile-nav-link:hover .arrow-icon, .mobile-nav-link.active .arrow-icon {
    color: var(--primary);
    transform: translateX(3px);
}

/* Mobile Drawer Action Buttons */
.mobile-drawer-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

.btn-drawer-action {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    color: #1e293b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.btn-drawer-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-drawer-call {
    color: #0b132b;
}

.btn-drawer-call i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-drawer-call:hover {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.btn-drawer-call:hover i {
    color: #ffffff;
}

.btn-drawer-email {
    color: #0b132b;
}

.btn-drawer-email i {
    color: #ff9800;
    font-size: 0.9rem;
}

.btn-drawer-email:hover {
    background: #ff9800;
    border-color: #ff9800;
    color: #ffffff;
}

.btn-drawer-email:hover i {
    color: #ffffff;
}


/* Custom Buttons */
.btn-orange {
    background: var(--gradient-orange);
    color: white !important;
    font-weight: 700;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 18px rgba(255, 87, 34, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.45);
    color: white !important;
}
.btn-outline-orange {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-outline-orange:hover {
    background: var(--primary);
    color: white !important;
}
.btn-gold {
    background: var(--gradient-gold);
    color: #1e293b !important;
    font-weight: 700;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,87,34,0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffb703;
    text-transform: uppercase;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
    margin: 20px 0 15px;
}
.hero-title .text-gradient {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 650px;
    margin-bottom: 30px;
}

/* Stat Box */
.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    color: white;
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-5px);
}
.stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffb703;
    font-family: 'Outfit', sans-serif;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Banner Slider Section (Full Width Edge-to-Edge - Complete 100% View) */
.hero-slider-section {
    position: relative;
    background: #ffffff;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    width: 100% !important;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.hero-carousel {
    width: 100%;
    position: relative;
}

.hero-carousel .carousel-inner {
    border-radius: 0 !important;
    background: #ffffff;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
}

.hero-banner-img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
}

/* Round Left and Right Navigation Buttons */
.hero-slider-wrapper .custom-round-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: rgba(11, 19, 43, 0.88);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 183, 3, 0.95);
    color: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    padding: 0;
}

.hero-slider-wrapper .custom-round-btn:hover {
    background: var(--gradient-orange);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.7);
}

.hero-slider-wrapper .carousel-control-prev.custom-round-btn {
    left: 20px;
}

.hero-slider-wrapper .carousel-control-next.custom-round-btn {
    right: 20px;
}

/* On hover of the hero slider wrapper, show the round buttons */
.hero-slider-wrapper:hover .custom-round-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Modern Pill Carousel Indicators */
.hero-carousel .carousel-indicators {
    margin-bottom: 0.9rem;
    gap: 7px;
    z-index: 6;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.75;
    margin: 0;
}

.hero-carousel .carousel-indicators .active {
    width: 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    opacity: 1;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(255, 87, 34, 0.9);
}

@media (max-width: 768px) {
    .hero-slider-section {
        padding: 6px 0 16px;
    }
    .hero-slider-wrapper .custom-round-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) scale(0.85);
    }
    .hero-slider-wrapper:hover .custom-round-btn,
    .hero-slider-wrapper:active .custom-round-btn,
    .hero-slider-wrapper:focus-within .custom-round-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) scale(1);
    }
    .hero-slider-wrapper .carousel-control-prev.custom-round-btn {
        left: 8px;
    }
    .hero-slider-wrapper .carousel-control-next.custom-round-btn {
        right: 8px;
    }
    .hero-carousel .carousel-indicators {
        margin-bottom: 0.4rem;
    }
    .hero-carousel .carousel-indicators [data-bs-target] {
        width: 7px;
        height: 7px;
    }
    .hero-carousel .carousel-indicators .active {
        width: 20px;
    }
}

/* India's Orange Economy Section (Slide Presentation Match) */
.orange-economy-section {
    background: #fdfbf7;
    padding: 60px 0;
    border-bottom: 1px solid #e8decb;
}

.orange-economy-card {
    background: #FAF6EE !important;
    border: 1.5px solid #e8decb !important;
    border-radius: 20px !important;
}

.orange-photo-col {
    background: #0b132b;
    min-height: 480px;
}

.orange-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.orange-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.orange-photo-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0) 35%, rgba(11, 19, 43, 0.7) 65%, rgba(11, 19, 43, 0.96) 100%);
}

.orange-photo-content {
    position: absolute;
    bottom: 28px;
    left: 24px;
    right: 24px;
    z-index: 5;
}

.photo-quote-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.photo-quote-subtitle {
    color: #ffb703;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.orange-content-col {
    background: #FAF6EE;
}

.orange-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #781d22;
    letter-spacing: 0.5px;
}

.orange-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: #c05621;
    font-family: 'Outfit', sans-serif;
}

.orange-heading-line {
    width: 100%;
    height: 2px;
    background: #e28743;
    margin-top: 8px;
    margin-bottom: 24px;
}

.orange-text-block p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #334155;
}

.orange-milestone-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.orange-milestone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.milestone-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
}

.badge-red {
    background: #993322;
}

.badge-amber {
    background: #d97706;
}

.badge-navy {
    background: #1e3a5f;
}

.milestone-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #781d22;
    font-family: 'Outfit', sans-serif;
}

.milestone-desc {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
}

/* Bihar Creator Award Section (Slide 2 Exact Match) */
.bihar-award-section {
    background: linear-gradient(180deg, #ffffff 0%, #fcf9f2 50%, #f7f0e1 100%);
    padding: 50px 0 25px;
}

.bihar-award-card {
    background: #FAF6EE !important;
    border: 1.5px solid #e8decb !important;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.bihar-visual-col {
    background: #f3e9d7;
    position: relative;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bihar-visual-col .bihar-visual-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bihar-award-card:hover .bihar-visual-img {
    transform: scale(1.02);
}

.gov-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #681318;
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(104, 19, 24, 0.25);
    margin-bottom: 14px;
}

.bihar-award-content-col {
    background: #FAF6EE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bihar-award-heading {
    margin-bottom: 18px;
}

.bihar-award-title {
    font-size: 2.65rem;
    font-weight: 900;
    color: #631217;
    letter-spacing: -0.5px;
    line-height: 1.12;
    font-family: 'Outfit', sans-serif;
}

.bihar-tricolor-accent {
    width: 140px;
    height: 5px;
    margin: 10px 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9933 0%, #f4f4f4 50%, #138808 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.bihar-award-lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: justify;
}

.bihar-pillars-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    align-items: start;
    width: 100%;
}

.pillar-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pillar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #8e2026 0%, #540e12 100%);
    border: 3px solid #d4af37;
    box-shadow: 0 6px 15px rgba(84, 14, 18, 0.35), inset 0 2px 6px rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.pillar-badge-item:hover .pillar-circle {
    transform: translateY(-4px) scale(1.08);
    border-color: #ffd700;
    box-shadow: 0 10px 22px rgba(84, 14, 18, 0.5), 0 0 18px rgba(212, 175, 55, 0.6);
}

.pillar-tag {
    background: linear-gradient(180deg, #d89b38 0%, #b87c24 100%);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    padding: 4px 6px;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(184, 124, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

@media (max-width: 768px) {
    .bihar-pillars-row {
        gap: 8px;
    }
    .pillar-circle {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    .pillar-tag {
        font-size: 0.62rem;
        padding: 3px 4px;
    }
}

@media (max-width: 576px) {
    .bihar-pillars-row {
        gap: 6px;
        margin-bottom: 18px;
    }
    .pillar-circle {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        border-width: 2px;
        margin-bottom: 6px;
    }
    .pillar-tag {
        font-size: 0.54rem;
        padding: 3px 2px;
        border-radius: 6px;
        letter-spacing: -0.2px;
        line-height: 1.1;
        min-height: 22px;
    }
}

@media (max-width: 375px) {
    .bihar-pillars-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
    }
    .pillar-circle {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
        border-width: 2.5px;
    }
    .pillar-tag {
        font-size: 0.66rem;
        padding: 4px 8px;
        border-radius: 999px;
        letter-spacing: 0.2px;
    }
}

.bihar-award-ribbon {
    background: linear-gradient(90deg, #3d070a 0%, #68151a 30%, #7d1c23 50%, #68151a 70%, #3d070a 100%);
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    color: #ffffff;
    padding: 12px 18px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.bihar-award-ribbon .laurel-icon {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Slide 4 & PPT Presentation Cards */
.ppt-slide-card {
    background: #FAF6EE !important;
    border: 1.5px solid #dfcba5 !important;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.ppt-slide-header {
    margin-bottom: 24px;
}

.ppt-slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #681318;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.ppt-slide-tagline {
    font-size: 0.82rem;
    font-weight: 800;
    color: #a86210;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   Slide 4: Affordable Internet Is Unlocking Bihar's Youth Creativity
   ========================================================================== */
.ppt-stat-badge-card {
    background: #ffffff;
    border: 1px solid rgba(206, 108, 47, 0.16);
    border-radius: 18px;
    padding: 22px 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(90, 16, 20, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ppt-stat-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px -4px rgba(206, 108, 47, 0.22);
    border-color: rgba(206, 108, 47, 0.4);
}

.stat-icon-gold-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    color: #ce6c2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(206, 108, 47, 0.12);
    transition: all 0.3s ease;
}

.ppt-stat-badge-card:hover .stat-icon-gold-circle {
    background: radial-gradient(circle at 35% 35%, #8b1d24 0%, #5a1014 70%, #2a0407 100%);
    color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 6px 16px rgba(90, 16, 20, 0.35);
}

.stat-number-val {
    color: #5a1014;
    font-family: 'Outfit', sans-serif;
    font-size: 1.95rem;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-cr-val {
    font-size: 1.55rem;
}

.stat-label-text {
    color: #64748b;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.ppt-highlight-box {
    background: linear-gradient(135deg, #fffdf8 0%, #fff8f0 100%);
    border: 1.5px solid #fed7aa;
    border-left: 5px solid #ce6c2f;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(90, 16, 20, 0.04);
}

.ppt-highlight-title {
    background: linear-gradient(180deg, #681318 0%, #4a0c10 100%);
    color: #ffd700;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(90, 16, 20, 0.2);
}

.connectivity-chart-card {
    background: #ffffff;
    border: 1px solid rgba(206, 108, 47, 0.18);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px -4px rgba(90, 16, 20, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.chart-header-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    color: #5a1014;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-pill {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
}

.bihar-legend {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.nat-legend {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.metric-bar-group {
    margin-bottom: 14px;
}

.metric-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.metric-compare-pill {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.dual-progress-track {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.progress-track-bg {
    width: 100%;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
}

.progress-track-bg.track-bihar {
    height: 18px;
    background: #f8fafc;
}

.progress-track-bg.track-nat {
    height: 15px;
    background: #f8fafc;
}

.metric-progress-bar-bihar {
    height: 100%;
    background: linear-gradient(90deg, #681318 0%, #8e2026 60%, #b91c1c 100%);
    border-radius: 5px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    box-shadow: 0 2px 6px rgba(104, 19, 24, 0.2);
    transition: width 0.6s ease;
}

.metric-progress-bar-nat {
    height: 100%;
    background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
    border-radius: 5px;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    opacity: 0.92;
    transition: width 0.6s ease;
}

/* Slide 5: Creator Economy ₹100Cr Opportunity */
.economy-stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 60%, #fff9ee 100%);
    border: 2px solid #e5ad58;
    border-radius: 20px;
    padding: 24px 14px 20px 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(229, 173, 88, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.economy-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(104, 19, 24, 0.18);
    border-color: #c42730;
}

.economy-stat-card .stat-icon-gold-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fffbeb 0%, #fef08a 35%, #f59e0b 85%, #d97706 100%);
    border: 3px solid #ffffff;
    color: #681318;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.economy-stat-card:hover .stat-icon-gold-circle {
    transform: scale(1.08);
}

.economy-badge-pill {
    background: linear-gradient(180deg, #6c1217 0%, #4a0a0e 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    padding: 14px 12px 10px 12px;
    border-radius: 14px;
    border: 1.5px solid #e5ad58;
    margin-top: -22px;
    margin-bottom: 14px;
    width: calc(100% - 10px);
    box-shadow: 0 6px 16px rgba(74, 10, 14, 0.32);
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.economy-badge-pill.economy-badge-cr {
    font-size: 1.55rem;
    padding-top: 16px;
    padding-bottom: 12px;
}

.economy-title {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.economy-desc {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.5;
}

.structural-gap-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf2 100%);
    border: 1.5px solid #e5ad58;
    border-radius: 18px;
    padding: 20px 22px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(229, 173, 88, 0.12);
}

.structural-header-pill {
    background: linear-gradient(180deg, #681318 0%, #4a0c10 100%);
    color: #ffd700;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    box-shadow: 0 3px 8px rgba(90, 16, 20, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.structural-gap-text {
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Slide 6: Phase 1 360 Awareness */
.awareness-center-hub {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #8e2026 0%, #4a0c10 100%);
    border: 4px solid #d4af37;
    box-shadow: 0 8px 25px rgba(104, 19, 24, 0.4), 0 0 20px rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    text-align: center;
    margin: 0 auto 20px;
}

.awareness-node-card {
    background: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.awareness-node-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.awareness-number-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #681318;
    color: #ffd700;
    border: 2px solid #d4af37;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   Slide 7: Zig-Zag Alternating Vertical Timeline for Creator Journey
   ========================================================================== */
.creator-timeline-wrapper {
    position: relative;
    max-width: 980px;
    margin: 40px auto 30px;
    padding: 20px 0;
}

/* ==========================================================================
   Slide 7: The Creator Journey — 7 Steps (Exact Wave Medallion Layout)
   ========================================================================== */
.ppt-journey-wave-container {
    position: relative;
    width: 100%;
    padding: 30px 10px 20px 10px;
    margin: 20px 0;
}

.journey-flow-track {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.journey-steps-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.journey-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Up and Down alternation on Desktop (Exact Match to PPT Slide 7 Wave) */
@media (min-width: 992px) {
    .journey-step-node.step-pos-up {
        margin-top: 0;
        margin-bottom: 65px;
    }
    .journey-step-node.step-pos-down {
        margin-top: 65px;
        margin-bottom: 0;
    }
}

.journey-step-node:hover {
    transform: translateY(-8px);
}

/* Medallion Box */
.journey-medallion-box {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -22px;
    z-index: 4;
}

.step-num-pill {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4a0c10;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    z-index: 5;
}

.step-medallion-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #8b1d24 0%, #5a1014 65%, #2a0407 100%);
    border: 3.5px solid #ffd700;
    box-shadow: 0 0 0 3px rgba(206, 108, 47, 0.35), 0 8px 18px rgba(74, 12, 16, 0.35);
    color: #ffd700;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.journey-step-node:hover .step-medallion-circle {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px #ffd700, 0 10px 25px rgba(206, 108, 47, 0.5);
    background: radial-gradient(circle at 35% 35%, #ce6c2f 0%, #681318 70%, #2a0407 100%);
    color: #ffffff;
}

/* Capsule Card */
.journey-capsule-card {
    width: 100%;
    max-width: 175px;
    min-height: 140px;
    border-radius: 16px;
    overflow: hidden;
    background: #fffefb;
    border: 2px solid #e2a850;
    box-shadow: 0 8px 22px rgba(90, 16, 20, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    transition: all 0.35s ease;
}

.journey-step-node:hover .journey-capsule-card {
    border-color: #ce6c2f;
    box-shadow: 0 12px 28px rgba(206, 108, 47, 0.22);
}

.capsule-header-pill {
    background: linear-gradient(180deg, #681318 0%, #4a0c10 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 26px 6px 7px 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.25;
    border-bottom: 2px solid #e2a850;
}

.capsule-content-box {
    padding: 10px 8px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffefb;
}

.capsule-content-box p {
    font-size: 0.74rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

/* Specific Highlights */
.journey-step-node.highlight-stage-district .step-medallion-circle {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.4), 0 8px 20px rgba(217, 119, 6, 0.3);
}

.journey-step-node.highlight-stage-finale .step-medallion-circle {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.6), 0 8px 22px rgba(104, 19, 24, 0.4);
}

.journey-step-node.highlight-stage-apex .step-medallion-circle {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px #ffd700, 0 0 20px rgba(255, 215, 0, 0.6);
    background: radial-gradient(circle at 35% 35%, #ffd700 0%, #ce6c2f 60%, #681318 100%);
    color: #ffffff;
}

.ppt-bottom-banner {
    background: linear-gradient(90deg, #3d070a 0%, #68151a 30%, #7d1c23 50%, #68151a 70%, #3d070a 100%);
    border: 2px solid #d4af37;
    color: #ffffff;
    padding: 16px 22px;
    box-shadow: 0 8px 24px rgba(61, 7, 10, 0.3), inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1199px) and (min-width: 992px) {
    .journey-capsule-card {
        max-width: 100%;
        min-height: 145px;
    }
    .capsule-header-pill {
        font-size: 0.72rem;
        padding-top: 24px;
    }
    .capsule-content-box p {
        font-size: 0.71rem;
    }
}

@media (max-width: 991px) {
    .ppt-journey-wave-container {
        padding: 10px 0;
    }
    .journey-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 16px;
    }
    .journey-step-node {
        margin: 0 !important;
    }
    .journey-capsule-card {
        max-width: 100%;
        min-height: 125px;
    }
}

@media (max-width: 575px) {
    .journey-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 10px auto 0;
}

/* Feature & Card Styles */
.custom-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
}
.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 87, 34, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.custom-card:hover .icon-box {
    background: var(--gradient-orange);
    color: white;
    transform: scale(1.08);
}

/* High-End Executive 3-Tier Format Section */
.slide8-format-section {
    background: linear-gradient(180deg, #fbf8f2 0%, #FAF6EE 50%, #f7f2e7 100%);
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}
.slide8-format-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.08) 0%, rgba(206, 108, 47, 0.03) 50%, transparent 80%);
    pointer-events: none;
}
.slide8-main-title {
    color: #5a1014;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.6px;
    margin-bottom: 40px;
    text-align: center;
}

/* Luxury Tier Cards */
.format-step-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #ebdccb;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -5px rgba(90, 16, 20, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.format-step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    transition: all 0.3s ease;
}
.format-step-card.tier-card-1::after {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}
.format-step-card.tier-card-2::after {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}
.format-step-card.tier-card-3::after {
    background: linear-gradient(90deg, #e11d48, #f59e0b, #ffd700);
}

.format-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(104, 19, 24, 0.12), 0 0 0 1px #ce6c2f;
}

/* Card 3 (Championship Apex) Highlight */
.format-step-card.card-highlight {
    border: 2px solid #ce6c2f !important;
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    box-shadow: 0 12px 35px -5px rgba(206, 108, 47, 0.16), 0 0 0 1px rgba(206, 108, 47, 0.3);
}
.format-step-card.card-highlight:hover {
    box-shadow: 0 22px 48px -8px rgba(206, 108, 47, 0.28), 0 0 0 1.5px #ce6c2f;
}

/* 3D Glassmorphic Icon Box */
.format-step-card .icon-box-sq {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}
.format-step-card:hover .icon-box-sq {
    transform: scale(1.1) rotate(4deg);
}

.tier-card-1 .icon-box-sq {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    border: 1px solid #7dd3fc;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}
.tier-card-2 .icon-box-sq {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border: 1px solid #fcd34d;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.15);
}
.tier-card-3 .icon-box-sq {
    background: linear-gradient(135deg, #681318 0%, #8b1d24 100%);
    color: #ffd700;
    border: 1px solid #ffd700;
    box-shadow: 0 6px 18px rgba(104, 19, 24, 0.28);
}

.format-step-card .step-num-watermark {
    position: absolute;
    right: 24px;
    top: 14px;
    font-size: 3.6rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -1px;
}
.tier-card-1 .step-num-watermark {
    color: rgba(2, 132, 199, 0.1);
}
.tier-card-2 .step-num-watermark {
    color: rgba(217, 119, 6, 0.1);
}
.tier-card-3 .step-num-watermark {
    color: rgba(206, 108, 47, 0.16);
}

.format-step-card .card-heading {
    font-size: 1.48rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}
.tier-card-3 .card-heading {
    color: #5a1014;
}

.format-step-card .scope-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.tier-card-1 .scope-badge-pill {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.tier-card-2 .scope-badge-pill {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}
.tier-card-3 .scope-badge-pill {
    background: #681318;
    color: #ffd700;
    border: 1px solid #ffd700;
    box-shadow: 0 2px 8px rgba(104, 19, 24, 0.2);
}

.format-step-card .card-body-desc {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Bottom Highlight Deliverables Box */
.format-step-card .card-highlight-box {
    margin-top: auto;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
}
.tier-card-1 .card-highlight-box {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #e0f2fe;
}
.tier-card-2 .card-highlight-box {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fef3c7;
}
.tier-card-3 .card-highlight-box {
    background: #fff8f0;
    color: #9a3412;
    border: 1px solid #fed7aa;
}
.format-step-card .card-highlight-box i {
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}


/* ==========================================================================
   9 Commissionerates & 38 Districts Luxury Cards
   ========================================================================== */
.commissionerate-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(206, 108, 47, 0.16);
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -4px rgba(90, 16, 20, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.commissionerate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ce6c2f 0%, #ffd700 50%, #5a1014 100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.commissionerate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px -6px rgba(206, 108, 47, 0.22);
    border-color: rgba(206, 108, 47, 0.45);
}

.commissionerate-card:hover::before {
    height: 5px;
    opacity: 1;
}

.commissionerate-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
}

.comm-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    color: #ce6c2f;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(206, 108, 47, 0.12);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.commissionerate-card:hover .comm-icon-box {
    background: radial-gradient(circle at 35% 35%, #8b1d24 0%, #5a1014 70%, #2a0407 100%);
    color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 6px 16px rgba(90, 16, 20, 0.35);
}

.comm-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    color: #5a1014;
    line-height: 1.2;
}

.comm-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    color: #ce6c2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(206, 108, 47, 0.1);
    flex-shrink: 0;
}

.comm-arrow-btn:hover,
.commissionerate-card:hover .comm-arrow-btn {
    background: linear-gradient(135deg, #ce6c2f 0%, #8b1d24 100%);
    color: #ffffff;
    border-color: #ce6c2f;
    transform: translateX(3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(206, 108, 47, 0.25);
}

.commissionerate-card-body {
    flex-grow: 1;
}

.district-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.chip-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ce6c2f;
    transition: all 0.25s ease;
}

.district-chip:hover {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(206, 108, 47, 0.15);
}

.district-chip:hover .chip-bullet {
    background: #ffd700;
    transform: scale(1.3);
}

/* ==========================================================================
   Judging Rubric / How Content is Judged Luxury Cards
   ========================================================================== */
.judge-rubric-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(206, 108, 47, 0.16);
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -4px rgba(90, 16, 20, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.judge-rubric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.rubric-card-1::before {
    background: linear-gradient(90deg, #681318, #ce6c2f);
}
.rubric-card-2::before {
    background: linear-gradient(90deg, #ce6c2f, #f59e0b);
}
.rubric-card-3::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}
.rubric-card-4::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.judge-rubric-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px -6px rgba(206, 108, 47, 0.22);
}
.judge-rubric-card:hover::before {
    height: 6px;
}

.rubric-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rubric-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.35s ease;
}

.rubric-card-1 .rubric-icon-box {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    color: #be123c;
    border: 1px solid #fecdd3;
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.12);
}
.rubric-card-2 .rubric-icon-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #ce6c2f;
    border: 1px solid #fed7aa;
    box-shadow: 0 4px 12px rgba(206, 108, 47, 0.12);
}
.rubric-card-3 .rubric-icon-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0284c7;
    border: 1px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}
.rubric-card-4 .rubric-icon-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 1px solid #a7f3d0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}

.judge-rubric-card:hover .rubric-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.rubric-score-badge {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.rubric-card-1 .score-val { color: #681318; }
.rubric-card-2 .score-val { color: #ce6c2f; }
.rubric-card-3 .score-val { color: #0284c7; }
.rubric-card-4 .score-val { color: #059669; }

.score-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.rubric-progress-wrap {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
}

.rubric-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
}

.rubric-card-1 .rubric-progress-bar { background: linear-gradient(90deg, #681318, #be123c); }
.rubric-card-2 .rubric-progress-bar { background: linear-gradient(90deg, #ce6c2f, #f59e0b); }
.rubric-card-3 .rubric-progress-bar { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.rubric-card-4 .rubric-progress-bar { background: linear-gradient(90deg, #059669, #10b981); }

.rubric-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.25;
}

.rubric-desc {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.rubric-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.rubric-mini-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* ==========================================================================
   Jury Panel Luxury Styling (Slide 10)
   ========================================================================== */
.jury-intro-card {
    transition: all 0.35s ease;
    border: 1px solid rgba(206, 108, 47, 0.16) !important;
}

.jury-intro-card:hover {
    box-shadow: 0 15px 35px -5px rgba(90, 16, 20, 0.1) !important;
}

.jury-unbiased-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.jury-unbiased-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(90, 16, 20, 0.4), 0 0 25px rgba(255, 215, 0, 0.25) !important;
}

.jury-pillar-card {
    border: 1px solid rgba(206, 108, 47, 0.16) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.jury-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -6px rgba(206, 108, 47, 0.22) !important;
    border-color: rgba(206, 108, 47, 0.4) !important;
}

.pillar-top-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.stripe-1 { background: linear-gradient(90deg, #e11d48, #f43f5e); }
.stripe-2 { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.stripe-3 { background: linear-gradient(90deg, #b45309, #f59e0b); }
.stripe-4 { background: linear-gradient(90deg, #7c3aed, #a855f7); }

.jury-pillar-card:hover .pillar-top-stripe {
    height: 6px;
}

.pillar-icon-sq {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.icon-p1 {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    color: #be123c;
    border: 1px solid #fecdd3;
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.12);
}
.icon-p2 {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0284c7;
    border: 1px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}
.icon-p3 {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #b45309;
    border: 1px solid #fde68a;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.12);
}
.icon-p4 {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    color: #7c3aed;
    border: 1px solid #e9d5ff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
}

.jury-pillar-card:hover .pillar-icon-sq {
    transform: scale(1.1) rotate(4deg);
}

.pillar-badge-pill {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
}

.pill-p1 { background: #ffe4e6; color: #9f1239; }
.pill-p2 { background: #e0f2fe; color: #0369a1; }
.pill-p3 { background: #fef3c7; color: #92400e; }
.pill-p4 { background: #f3e8ff; color: #6b21a8; }

.pillar-num-watermark {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: rgba(90, 16, 20, 0.08);
}

.pillar-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.22rem;
    color: #1e293b;
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
}

/* Category Grid Card (Modern Interactive Tile) */
.category-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #ebdccb;
    padding: 18px 22px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(90, 16, 20, 0.04);
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px -5px rgba(206, 108, 47, 0.22);
    transform: translateY(-4px);
    background: #ffffff;
}
.category-badge-letter {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease;
    font-family: 'Outfit', sans-serif;
}
.category-badge-letter.badge-terracotta {
    background: #b84a39 !important;
    box-shadow: 0 4px 10px rgba(184, 74, 57, 0.28);
}
.category-badge-letter.badge-navy {
    background: #19385c !important;
    box-shadow: 0 4px 10px rgba(25, 56, 92, 0.28);
}
.category-badge-letter.badge-gold {
    background: #c88118 !important;
    box-shadow: 0 4px 10px rgba(200, 129, 24, 0.28);
}
.category-badge-letter.badge-maroon {
    background: #5a1014 !important;
    box-shadow: 0 4px 10px rgba(90, 16, 20, 0.28);
}
.category-card:hover .category-badge-letter {
    transform: scale(1.1) rotate(4deg);
}
.category-card .category-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    transition: color 0.25s ease;
    line-height: 1.3;
}
.category-card:hover .category-title {
    color: var(--primary);
}
.category-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.category-card:hover .category-arrow-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(206, 108, 47, 0.35);
}
.special-badge {
    background: var(--gradient-gold);
    color: #0f172a;
}

/* Special Jury Award Trophy Cards */
.jury-award-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    border: 1px solid #ebdccb;
    border-radius: 22px;
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(90, 16, 20, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.jury-award-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.25) 0%, rgba(206, 108, 47, 0.08) 50%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.jury-award-card:hover {
    transform: translateY(-8px);
    border-color: #ce6c2f;
    box-shadow: 0 20px 40px -10px rgba(206, 108, 47, 0.25), 0 0 0 1px #ce6c2f;
}
.jury-award-card:hover::before {
    transform: translateX(-50%) scale(1.35);
    opacity: 0.9;
}
.jury-award-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #681318 0%, #8b1d24 100%);
    color: #ffd700;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(104, 19, 24, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.jury-award-trophy-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 10px auto 18px;
    filter: drop-shadow(0 12px 20px rgba(104, 19, 24, 0.18));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.jury-award-card:hover .jury-award-trophy-img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 16px 26px rgba(206, 108, 47, 0.32));
}
.jury-award-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #5a1014;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: -0.3px;
}
.jury-award-naming-pill {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    background: #fff8f0;
    color: #ce6c2f;
    border: 1px solid #fed7aa;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}
.jury-award-card:hover .jury-award-naming-pill {
    background: #ce6c2f;
    color: #ffffff;
    border-color: #ce6c2f;
}

/* Sponsor Tier Cards */
.sponsor-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.sponsor-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.15);
    transform: scale(1.03);
}
.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}
.sponsor-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin: 15px 0 20px;
    font-family: 'Outfit', sans-serif;
}
.sponsor-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}
.sponsor-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.sponsor-features li i {
    color: #10b981;
    margin-top: 4px;
}

/* Page Hero (Internal Pages) */
.page-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 60px 0;
    position: relative;
    border-bottom: 4px solid var(--primary);
}
.page-hero h1 {
    color: white;
    font-size: 2.6rem;
    font-weight: 800;
}
.breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: #ff9800;
}
.breadcrumb-item.active {
    color: #cbd5e1;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #64748b;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-hover);
}
.blog-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Forms */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-control, .form-select {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

/* Testimonial / Jury Card */
.jury-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.jury-card:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 87, 34, 0.3);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #3d090d 0%, #220507 100%) !important;
    color: #e2d9cb;
    padding: 70px 0 25px !important;
    border-top: 4px solid #d4af37;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    position: relative;
    z-index: 10;
}
.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Colorful Branded Social Media Buttons */
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon-btn.social-facebook,
.social-icon-btn:has(.fa-facebook-f) {
    background: #1877f2 !important;
}
.social-icon-btn.social-facebook:hover,
.social-icon-btn:has(.fa-facebook-f):hover {
    background: #125ec2 !important;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.5);
}

.social-icon-btn.social-instagram,
.social-icon-btn:has(.fa-instagram) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}
.social-icon-btn.social-instagram:hover,
.social-icon-btn:has(.fa-instagram):hover {
    filter: brightness(1.15);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 39, 67, 0.5);
}

.social-icon-btn.social-twitter,
.social-icon-btn:has(.fa-x-twitter) {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.social-icon-btn.social-twitter:hover,
.social-icon-btn:has(.fa-x-twitter):hover {
    background: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.social-icon-btn.social-youtube,
.social-icon-btn:has(.fa-youtube) {
    background: #ff0000 !important;
}
.social-icon-btn.social-youtube:hover,
.social-icon-btn:has(.fa-youtube):hover {
    background: #cc0000 !important;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
}

.social-icon-btn.social-linkedin,
.social-icon-btn:has(.fa-linkedin-in) {
    background: #0a66c2 !important;
}
.social-icon-btn.social-linkedin:hover,
.social-icon-btn:has(.fa-linkedin-in):hover {
    background: #084e96 !important;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 40px;
    margin-bottom: 0 !important;
    font-size: 0.88rem;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .bihar-visual-col {
        min-height: 320px;
    }
    .bihar-visual-col .bihar-visual-img {
        min-height: 320px;
    }
    .bihar-award-title {
        font-size: 2.1rem;
    }
    .bihar-pillars-row {
        gap: 8px;
    }
    .pillar-circle {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
    .pillar-tag {
        font-size: 0.62rem;
        padding: 3px 6px;
        letter-spacing: 0.2px;
    }
    .bihar-award-ribbon {
        font-size: 0.92rem;
        padding: 10px 12px;
        gap: 8px;
    }
    .main-navbar .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Desktop Safety: Automatically remove any lingering mobile offcanvas backdrop */
@media (min-width: 992px) {
    .offcanvas-backdrop {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    body.modal-open,
    body:has(.offcanvas-backdrop) {
        overflow: auto !important;
        padding-right: 0 !important;
    }
}

/* Floating 3D Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.45), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 1040;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-back-to-top:hover {
    background: #0b132b;
    color: #ffb703 !important;
    border-color: #ffb703;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 30px rgba(11, 19, 43, 0.5), 0 0 15px rgba(255, 183, 3, 0.4);
}

.btn-back-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Custom Styled Tooltips with Indicator Arrow */
.tooltip {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    z-index: 1090 !important;
    pointer-events: none;
}

.tooltip .tooltip-inner {
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
    color: #ffffff;
    padding: 7px 13px;
    border-radius: 8px;
    border: 1px solid rgba(255, 183, 3, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.3px;
    max-width: 260px;
    text-align: center;
}

/* Arrow indicator styles matching the gradient */
.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    border-top-color: #1c2541 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    border-bottom-color: #0b132b !important;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    border-left-color: #1c2541 !important;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    border-right-color: #0b132b !important;
}

