



/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background: var(--off-white);
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-container img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    max-height: 900px;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(13, 31, 60, 0.9));
}
.events-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-image-stat {
    display: flex;
    gap: 2rem;
}

.about-image-stat-item {
    text-align: center;
}

.about-image-stat-number {
    font-family: var(--font-01);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.about-image-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-03);
    margin-top: 5px;
}

.about-content-premium {
    padding-left: 3rem;
}

.about-quote-premium {
    background: linear-gradient(135deg, var(--light-blue), rgba(232, 101, 42, 0.05));
    border-left: 4px solid var(--accent-orange);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    position: relative;
}

.about-quote-premium::before {
    content: '"';
    font-family: var(--font-01);
    font-size: 5rem;
    color: var(--accent-orange);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.about-quote-premium p {
    font-family: var(--font-01);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-blue);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-quote-premium .quote-author {
    font-family: var(--font-03);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 1rem;
    display: block;
}

@media(max-width:767px){
    .about-content-premium {
    padding-left: 0rem;
}
.section-title-premium {
    font-family: var(--font-01);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.section-premium {
    padding: 50px 0;
    position: relative;
}
}








/* Main Section Wrapper */
.accomplishments-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Section Header Styling */
.section-main-title {
    color: var(--primary-blue);
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange-dark);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-intro-text {
    color: #000;
    font-size: 17px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Award Card Box */
.award-card {
    background-color: #fff;
    border: 1px solid var(--primary-blue);
    border-top: 5px solid var(--accent-orange-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.award-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.custom-header-inner-spacing .award-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.award-card-title {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.award-card-subtitle {
    color: var(--accent-orange-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.award-card-desc {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Box Styling */
.accomplishments-footer-box {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 8px;
    border-left: 6px solid var(--accent-orange-dark);
}

.accomplishments-footer-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* ==========================================
   CUSTOM SPACING CLASSES 
   ========================================== */
.leadership-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.leadership-built {
    background: var(--off-white) !important;
}
.leadership-built .involved-card-premium {
    background: #fff;
}
.custom-header-spacing {
    margin-bottom: 35px;
}

.custom-line-spacing {
    margin-bottom: 16px;
}

.custom-cards-spacing {
    margin-bottom: 35px;
}

.custom-card-col {
    margin-bottom: 24px;
}

.custom-card-padding {
    padding: 28px 24px;
}

.custom-header-inner-spacing {
    margin-bottom: 14px;
}

.custom-subtitle-spacing {
    margin-bottom: 12px;
}

.custom-footer-padding {
    padding: 24px 30px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .custom-card-col {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-main-title {
        font-size: 26px;
    }

    .award-card-title {
        font-size: 19px;
    }

    .custom-card-padding {
        padding: 20px;
    }

    .custom-footer-padding {
        padding: 18px 20px;
    }
}





/* Section Wrapper */
.why-running-section {
    padding: 60px 0;
    background-color: var(--off-white);
}

/* Video Container Styling */
.video-container-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-blue);
    padding: 15px;
    border-radius: 12px;
    border-bottom: 5px solid var(--accent-orange-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.video-container-box img {
    max-width: 100%;
}
.video-container-box video {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* Title Styling */
.why-running-title {
    color: var(--primary-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    position: relative;
}

.why-running-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--accent-orange-dark);
    margin-top: 10px;
    border-radius: 2px;
}

/* Highlights List Styling */
.highlights-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.highlights-list li {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
}

.highlights-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange-dark);
    font-size: 16px;
}

/* ==========================================
   CUSTOM SPACING CLASSES (No Bootstrap Spacing)
   ========================================== */

.custom-video-col {
    margin-bottom: 30px;
}

.custom-title-spacing {
    margin-bottom: 20px;
}

.custom-paragraph-spacing {
    margin-bottom: 20px;
}

.custom-highlights-spacing {
    margin-bottom: 20px;
}

/* Media Queries for Responsive Layout */
@media (min-width: 992px) {
    .custom-video-col {
        margin-bottom: 0;
    }
    
    .custom-content-col {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .why-running-title {
        font-size: 26px;
    }
    
    .highlights-list li {
        font-size: 16px;
    }
}





/* ==============================================
   Custom Layout & Modern Bento Grid Styling
   (Strictly Custom Spacing Classes)
   ============================================== */
.priorities-section-head {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
/* Section Spacing */
.modern-priorities-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

/* Custom Spacing & Margins */
.custom-mb-xs {
    margin-bottom: 12px;
    display: inline-block;
}

.custom-mb-sm {
    margin-bottom: 20px;
}

.custom-mb-xl {
    margin-bottom: 50px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-col-spacing {
    padding-left: 15px;
    padding-right: 15px;
}

.custom-card-spacing {
    padding: 10px;
}

/* Modern Image Styling with Backdrop Frame */
.modern-img-wrapper {
    position: relative;
    padding: 15px;
    z-index: 1;
}

.img-accent-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    background-color: var(--accent-orange-dark);
    border-radius: 24px;
    z-index: -1;
}

.modern-section-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Modern Bento Card Styling */
.modern-pillar-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 100%;
    overflow: hidden;
}

/* Card Hover Elevation */
.modern-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-orange-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.modern-pillar-card:hover::before {
    opacity: 1;
}

/* Pillar Card Elements */
.pillar-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-orange-dark);
    background-color: rgba(0, 0, 0, 0.03);
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

.pillar-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: inherit;
    margin-bottom: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .custom-mb-mobile-lg {
        margin-bottom: 40px;
    }
    
    .modern-section-img {
        height: auto;
    }
}





/* ==============================================
   Full-Width Background Banner & Glassmorphic Card
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Section Outer Box with Background Image */
.candidate-hero-banner {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    background-image: url('https://zulfimalik.itsprowebsite.com/public/zulfimalik/themeaB9xY12z/assets/images/about/zulfi-bg.webp');
}

/* Dark Gradient Overlay over Background Image */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 20, 35, 0.88) 0%, rgba(5, 12, 24, 0.75) 100%);
    z-index: 1;
}

/* Z-Index fix for Content over Overlay */
.banner-container-relative {
    position: relative;
    z-index: 2;
}

/* Custom Spacing & Padding Classes */
.custom-p-xl {
    padding: 55px 50px;
}

.custom-mb-sm {
    margin-bottom: 16px;
}

.custom-mb-md {
    margin-bottom: 30px;
}

.custom-pt-sm {
    padding-top: 20px;
}

/* Glassmorphic Container Styling */
.statement-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Section Tag Styling */
.statement-tag-accent {
    background-color: var(--accent-orange-dark);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
}

/* Quote Statement Typography */
.statement-quote-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Author Block Styling */
.author-profile-block {
    display: flex;
    align-items: center;
}

.author-accent-line {
    width: 4px;
    height: 48px;
    background-color: var(--accent-orange-dark);
    margin-right: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-orange-dark);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .candidate-hero-banner {
        padding-top: 70px;
        padding-bottom: 70px;
        background-attachment: scroll;
    }

    .custom-p-xl {
        padding: 30px 22px;
    }

    .statement-quote-text {
        font-size: 1.45rem;
        line-height: 1.45;
    }

    .author-name {
        font-size: 1.15rem;
    }
}




/* ==============================================
   Custom Layout & Modern Interactive Grid
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Section Main Container */
.concerns-grid-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--off-white);
}

/* Custom Spacing & Margins */
.custom-mb-xs {
    margin-bottom: 14px;
    display: inline-block;
}

.custom-mb-sm {
    margin-bottom: 20px;
}

.custom-mb-xl {
    margin-bottom: 55px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-card-gap {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

/* Card Outer Styling */
.concern-item-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
    transition: all 0.35s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* Accent Left Border Indicator on Hover */
.concern-item-card::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: var(--accent-orange-dark);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Card Hover Elevation */
.concern-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.concern-item-card:hover::before {
    opacity: 1;
}

/* Number Badge */
.concern-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-orange-dark);
    background-color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concern Card Headings & Body */
.concern-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
}

.concern-item-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: inherit;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .concerns-grid-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .concern-item-card {
        padding: 24px 20px;
    }

    .custom-mb-xl {
        margin-bottom: 35px;
    }
}



/* ==============================================
   Custom Layout & Narrative Spotlight Styling
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Outer Section Styling */
.narrative-spotlight-section {
    padding-top: 110px;
    padding-bottom: 110px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Custom Spacing & Margins */
.custom-mb-xs {
    margin-bottom: 14px;
    display: inline-block;
}

.custom-mb-sm {
    margin-bottom: 22px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.narrative-col-spacing {
    padding-left: 20px;
    padding-right: 20px;
}

/* Narrative Left Box Accent */
.narrative-content-box {
    padding-left: 24px;
    border-left: 4px solid var(--accent-orange-dark);
}

/* Touchpoint Stack Container */
.touchpoints-stack-wrapper {
    padding: 10px;
}

/* Touchpoint Card Design */
.touchpoint-card {
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.touchpoint-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange-dark);
}

/* Touchpoint Indicator Icon */
.touchpoint-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: inline-block;
}

.highlight-dot {
    background-color: var(--accent-orange-dark);
}

/* Touchpoint Card Typography */
.touchpoint-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.touchpoint-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: inherit;
    margin-bottom: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .narrative-spotlight-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .custom-mb-mobile-lg {
        margin-bottom: 45px;
    }

    .narrative-content-box {
        padding-left: 16px;
    }

    .touchpoint-card:hover {
        transform: translateY(-4px);
    }
}





/* ==============================================
   Custom Layout & Modern Action Deck Styling
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Section Outer Box */
.action-plan-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f8fafc;
}

/* Custom Spacing Classes */
.custom-mb-xs {
    margin-bottom: 12px;
    display: inline-block;
}

.custom-mb-sm {
    margin-bottom: 18px;
}

.custom-mb-md {
    margin-bottom: 24px;
}

.custom-mb-xl {
    margin-bottom: 55px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-col-gap {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Action Deck Card Outer Box */
.action-deck-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* Card Top Border Highlight Accent */
.action-deck-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    background-color: var(--accent-orange-dark);
    border-radius: 4px 4px 0 0;
    opacity: 0.85;
}

/* Card Hover Elevation */
.action-deck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Header & Number Styling */
.deck-card-header {
    display: flex;
    align-items: center;
}

.deck-number-badge {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 30px;
    margin-right: 16px;
    flex-shrink: 0;
}

.deck-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Intro Paragraph Styling */
.deck-card-intro {
    font-size: 0.98rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

/* Action Bullet List */
.deck-action-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: auto;
}

.deck-action-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: inherit;
}

.deck-action-list li:last-child {
    margin-bottom: 0;
}

/* Custom Checkmark Bullet Icon */
.deck-action-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--accent-orange-dark);
    background-color: rgba(0, 0, 0, 0.04);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .action-plan-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .action-deck-card {
        padding: 26px 20px;
    }

    .deck-card-title {
        font-size: 1.15rem;
    }
}





/* ==============================================
   Custom Layout & Modern Stream Section
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Outer Section */
.standards-stream-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

/* Custom Spacing Classes */
.custom-mb-xs {
    margin-bottom: 14px;
    display: inline-block;
}

.custom-stream-gap {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Stream Card Outer Box */
.stream-pillar-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 34px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* Left Vertical Accent Line on Card */
.stream-pillar-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    background-color: var(--primary-blue);
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s ease;
}

/* Hover Elevation & Accent Shift */
.stream-pillar-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.08);
}

.stream-pillar-card:hover::after {
    background-color: var(--accent-orange-dark);
}

/* Card Top Row Header */
.stream-card-top {
    display: flex;
    align-items: center;
    width: 100%;
}

.stream-index-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-orange-dark);
    letter-spacing: 0.5px;
}

/* Typography Styling */
.stream-pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
}

.stream-pillar-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: inherit;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .standards-stream-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .stream-pillar-card {
        padding: 26px 22px;
    }

    .stream-pillar-title {
        font-size: 1.15rem;
    }
}



/* ==============================================
   Custom Layout & Asymmetric Governance Styling
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Section Main Box */
.governance-overview-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

/* Custom Spacing Classes */
.governance-col-spacing {
    padding-left: 18px;
    padding-right: 18px;
}

.custom-mb-md {
    margin-bottom: 20px;
}

/* Title Container Styling */
.governance-title-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
}

.governance-accent-line {
    width: 50px;
    height: 4px;
    background-color: var(--accent-orange-dark);
    margin-bottom: 20px;
    border-radius: 4px;
}

.governance-main-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* Paragraph Panel Cards */
.governance-panel-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
}

.governance-panel-card:hover {
    transform: translateX(6px);
    border-left-color: var(--accent-orange-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.governance-panel-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: inherit;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .governance-overview-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .custom-mb-mobile-lg {
        margin-bottom: 30px;
    }

    .governance-main-title {
        font-size: 1.75rem;
    }

    .governance-panel-card:hover {
        transform: translateY(-4px);
    }
}





/* ==============================================
   Custom Layout & Modern Compact Duty Grid
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Main Section Styling */
.responsibilities-grid-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f8fafc;
}

/* Custom Spacing Classes */
.custom-mb-xs {
    margin-bottom: 10px;
    display: inline-block;
}

.custom-mb-xl {
    margin-bottom: 50px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-duty-gap {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 24px;
}

/* Card Container Styling */
.duty-compact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.duty-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Badge Styling */
.duty-card-badge {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.duty-compact-card:hover .duty-card-badge {
    background-color: var(--accent-orange-dark);
}

/* Duty Content & Typography */
.duty-card-content {
    flex-grow: 1;
}

.duty-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .responsibilities-grid-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .duty-compact-card {
        padding: 22px 18px;
    }

    .duty-card-badge {
        min-width: 38px;
        height: 38px;
        font-size: 0.85rem;
        margin-right: 14px;
    }

    .duty-title {
        font-size: 1.05rem;
    }
}




/* ==============================================
   Custom Layout & Modern Announcement Spotlight
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Section Container */
.announcement-spotlight-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

/* Custom Spacing Classes */
.custom-mb-sm {
    margin-bottom: 20px;
}

.custom-mb-none {
    margin-bottom: 0;
}

/* Spotlight Card Outer Wrapper */
.announcement-banner-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 45px 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

/* Top Accent Bar */
.announcement-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange-dark) 100%);
}

.announcement-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Header Meta Bar */
.announcement-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.announcement-category-inline {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.announcement-type-badge {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.announcement-date-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-left: auto;
}

/* Headline Styling */
.announcement-headline {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .announcement-spotlight-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .announcement-banner-card {
        padding: 30px 22px;
    }

    .announcement-headline {
        font-size: 1.35rem;
    }

    .announcement-date-text {
        margin-left: 0;
        width: 100%;
    }
}






/* ==============================================
   Custom Layout & Modern Media Feed Grid
   (Strictly Custom Spacing Classes)
   ============================================== */

/* Main Section Wrapper */
.updates-feed-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f8fafc;
}

/* Custom Spacing Classes */
.custom-mb-xs {
    margin-bottom: 12px;
    display: block;
}

.custom-mb-xl {
    margin-bottom: 50px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-feed-gap {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 28px;
}

/* Card Outer Box */
.update-feed-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 26px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.update-feed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Card Header Meta Bar */
.update-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.update-category-pill {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: var(--primary-blue);
    color: var(--accent-orange);
    display: inline-block;
}

.update-date-stamp {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* Title Typography */
.update-feed-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
    margin-top: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .updates-feed-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .update-feed-card {
        padding: 24px 20px;
    }

    .update-feed-title {
        font-size: 1.1rem;
    }
}





/* ==============================================
   Custom Layout & Modern Voter Info Styling
   (Strictly Custom Spacing & Variables)
   ============================================== */

/* Section Outer Wrapper */
.voter-info-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

/* Custom Spacing Classes */
.custom-mb-xs {
    margin-bottom: 12px;
}

.custom-mb-lg {
    margin-bottom: 40px;
}

.custom-mb-xl {
    margin-bottom: 55px;
}

.custom-mb-none {
    margin-bottom: 0;
}

.custom-voter-gap {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 24px;
}

/* Tag Label Styling */
.voter-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-orange-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Individual Info Card */
.voter-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-top: 4px solid var(--primary-blue);
}

.voter-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent-orange-dark);
}

/* Specific Style for Official Guide Card */
.voter-card-guide {
    border-top-color: var(--accent-orange-dark);
    background: #fefce8;
}

.voter-card-topic {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

/* Callout Banner at Bottom */
.voter-callout-banner {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.voter-callout-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.15);
    color: var(--accent-orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voter-card-guide a {
    color: var(--accent-orange-dark);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .voter-info-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .voter-card {
        padding: 22px 18px;
    }

    .voter-callout-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
    }
}