:root {
    --gold: #D9AC59;
    --navy: #001B2E;
    --navy-light: #05263B;
}

.banner-custom {
    position: relative;
    background-color: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden;
}

.banner-custom .navbar-header {
    margin: 30px 0 100px 0;
}

/* Circles background */
.bg-circles-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-circles {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: auto;
    opacity: 0.8;
}

/* Ensure content goes above background */
.banner-content-container {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tagline */
.banner-tagline {
    font-family: var(--neno);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    display: block;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

/* Title */
.banner-title {
    font-family: var(--neno);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 30px;
}

.banner-title .highlight-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

/* Description */
.banner-description {
    font-family: var(--inter);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: #CBD6E2;
    margin-bottom: 45px;
    max-width: 680px;
}

/* Action Buttons */
.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 70px;
}

.btn-ai {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: var(--navy) !important;
    font-family: var(--neno);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--gold);
}

.btn-ai:hover {
    background-color: transparent;
    color: var(--gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 172, 89, 0.25);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-ai:hover .btn-icon {
    transform: rotate(15deg) scale(1.1);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--gold) !important;
    font-family: var(--neno);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-download:hover {
    background-color: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 172, 89, 0.25);
}

/* Stats Row - Premium Box Layout */
.banner-stats-row {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--gold);
    background-color: rgba(255, 255, 255, 0.02);
    /* Glassy feel */
    margin-top: auto;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.stat-col {
    position: relative;
    padding: 30px 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-col:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.stat-col:hover .stat-num {
    color: var(--gold);
}

.stat-label {
    font-family: var(--neno);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

/* Premium Reveal Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.banner-tagline,
.banner-title,
.banner-description,
.banner-actions,
.banner-stats-row {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.banner-tagline {
    animation-delay: 0.1s;
}

.banner-title {
    animation-delay: 0.25s;
}

.banner-description {
    animation-delay: 0.4s;
}

.banner-actions {
    animation-delay: 0.55s;
}

.banner-stats-row {
    animation-delay: 0.7s;
}

/* Responsiveness */
@media (max-width: 1199.98px) {
    .banner-title {
        font-size: 3.5rem;
    }

    .bg-circles {
        width: 70%;
    }

    .stat-col {
        padding: 25px 30px;
    }

    .stat-num {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .banner-custom {
        padding-top: 100px;
        min-height: auto;
    }

    .banner-title {
        font-size: 3rem;
    }

    .bg-circles {
        width: 80%;
        opacity: 0.5;
    }

    .stat-col {
        padding: 20px 25px;
    }
}

/* Grid border layout responsiveness */
/* Desktop / Tablet landscape view: 4 columns in a row */
@media (min-width: 768px) {
    .stat-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Tablet portrait & Mobile landscape view: 2x2 grid */
@media (min-width: 576px) and (max-width: 767.98px) {
    .stat-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Left columns (1 and 3) get right borders */
    .stat-col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Bottom row columns (3 and 4) don't have bottom borders */
    .stat-col:nth-child(3),
    .stat-col:nth-child(4) {
        border-bottom: none;
    }
}

/* Mobile vertical view: 1 column vertical stack */
@media (max-width: 575.98px) {
    .stat-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-ai,
    .btn-download {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 2rem;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.1em;
    }
}

/* ==========================================================================
   Vision & Mission Section
   ========================================================================== */

.vision-mission-section {
    background-color: #F8FAFC;
    /* Clean light-gray background */
    padding: 100px 0;
}

.vision-mission-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.vision-mission-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 50px 0;
}

/* VM Cards */
.vm-card-col {
    display: flex;
}

.vm-card {
    position: relative;
    width: 100%;
    padding: 50px 45px 60px 45px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Vision Card specific styles */
.vm-card.vision-card {
    background-color: var(--navy);
    border-top: 5px solid var(--gold);
}

/* Mission Card specific styles */
.vm-card.mission-card {
    background-color: #ffffff;
    border-top: 5px solid var(--navy);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Inner Taglines */
.vm-card .card-tagline {
    font-family: var(--neno);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}

.vision-card .card-tagline {
    color: var(--gold);
}

.mission-card .card-tagline {
    color: #8A99AD;
}

/* Content Text */
.vm-card .card-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.vision-card .card-text {
    color: #ffffff;
}

.mission-card .card-text {
    color: var(--navy);
}

/* SVG Watermarks positioned absolutely */
.vm-card .vm-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 140px;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.4s ease;
}

.vm-card:hover .vm-watermark {
    transform: scale(1.1) rotate(-5deg);
}

/* Bottom Definition Card */
.definition-card {
    position: relative;
    background-color: #0E3C26;
    /* Deep forest green */
    border-left: 5px solid var(--gold);
    padding: 40px 50px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(14, 60, 38, 0.15);
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.definition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(14, 60, 38, 0.22);
}

.definition-card .def-tagline {
    font-family: var(--neno);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.definition-card .def-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    color: #E2ECE9;
    line-height: 1.6;
    margin: 0;
}

/* Responsive updates for Vision & Mission section */
@media (max-width: 991.98px) {
    .vision-mission-section {
        padding: 70px 0;
    }

    .vm-card {
        padding: 40px 35px 50px 35px;
    }

    .vm-card .card-text {
        font-size: 1.45rem;
    }

    .definition-card {
        padding: 35px 40px;
    }

    .definition-card .def-text {
        font-size: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .vision-mission-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .vm-card .card-text {
        font-size: 1.3rem;
    }

    .vm-card .card-tagline {
        margin-bottom: 25px;
    }

    .definition-card {
        padding: 30px;
    }

    .definition-card .def-text {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Strategy Section
   ========================================================================== */

.strategy-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 100px 0;
}

.strategy-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.strategy-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 35px 0;
}

.strategy-paragraph {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.75;
    color: #4A5568;
    margin-bottom: 25px;
}

.strategy-paragraph .highlight-navy {
    color: var(--navy);
    font-weight: 700;
}

/* Improved Baseline Card UI */
.baseline-card {
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(217, 172, 89, 0.04) 0%, transparent 60%), #FAFBFD;
    border: 1px solid rgba(0, 45, 74, 0.04);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.05);
    box-sizing: border-box;
}

.baseline-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--gold);
    border-radius: 12px 12px 0 0;
}

.baseline-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 45, 74, 0.05);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.baseline-title {
    font-family: var(--neno);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(59, 195, 178, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 195, 178, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(59, 195, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 195, 178, 0);
    }
}

.status-text {
    font-family: var(--neno);
    font-size: 9px;
    font-weight: 700;
    color: #8A99AD;
    letter-spacing: 0.05em;
}

.baseline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.baseline-grid-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.baseline-grid-item:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 172, 89, 0.3);
    box-shadow: 0 15px 30px rgba(0, 45, 74, 0.07);
}

.baseline-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.baseline-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Color themed badges */
.data-center-badge {
    background-color: rgba(59, 195, 178, 0.1);
    color: var(--green);
}

.assets-badge {
    background-color: rgba(217, 172, 89, 0.1);
    color: var(--gold);
}

.enterprises-badge {
    background-color: rgba(51, 103, 154, 0.1);
    color: var(--blue);
}

.graduates-badge {
    background-color: rgba(0, 27, 46, 0.06);
    color: var(--navy);
}

/* Hover effects for badges */
.baseline-grid-item:hover .baseline-icon-wrapper {
    transform: scale(1.05);
}

.baseline-grid-item:hover .data-center-badge {
    background-color: var(--green);
    color: #ffffff;
}

.baseline-grid-item:hover .assets-badge {
    background-color: var(--gold);
    color: #ffffff;
}

.baseline-grid-item:hover .enterprises-badge {
    background-color: var(--blue);
    color: #ffffff;
}

.baseline-grid-item:hover .graduates-badge {
    background-color: var(--navy);
    color: #ffffff;
}

.baseline-grid-item:hover .baseline-icon {
    transform: scale(1.1);
}

.baseline-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.baseline-grid-item:hover .baseline-num {
    color: var(--navy-light);
}

.baseline-label {
    font-family: var(--neno);
    font-size: 10px;
    font-weight: 700;
    color: #8A99AD;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
}

/* Bottom Strategy Stats Row */
.strategy-stats-row {
    background-color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0, 27, 46, 0.15);
}

.strat-stat-col {
    position: relative;
    padding: 35px 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.strat-stat-col:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

.strat-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 0 0 12px 0;
}

.strat-stat-label {
    font-family: var(--neno);
    font-size: 11px;
    font-weight: 700;
    color: #A3B8CC;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

/* Strategy section responsiveness */
@media (max-width: 991.98px) {
    .strategy-section {
        padding: 70px 0;
    }

    .strategy-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .baseline-card {
        padding: 30px 25px;
    }

    .strat-stat-col {
        padding: 25px 30px;
    }

    .strat-stat-num {
        font-size: 2.8rem;
    }
}

/* Strategy stats dividers and grid responsiveness */
@media (min-width: 768px) {
    .strat-stat-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .strat-stat-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .strat-stat-col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .strat-stat-col:nth-child(3),
    .strat-stat-col:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    .strat-stat-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .strat-stat-col:last-child {
        border-bottom: none;
    }

    .baseline-grid {
        grid-template-columns: 1fr;
    }
}


/* DIGIT Card Design Section */
.digit_card_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.digit_card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.digit_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 34, 64, 0.08);
    border-color: #cbd5e1;
}

/* Highlighted card 'G' */
.digit_card.highlighted {
    background-color: #002244;
    border-color: #002244;
    box-shadow: 0 15px 35px rgba(0, 22, 41, 0.2);
}

.digit_card.highlighted:hover {
    background-color: #002D5A;
    box-shadow: 0 25px 50px rgba(0, 22, 41, 0.3);
}

.digit_letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5.5rem;
    font-weight: 500;
    color: #caa85b;
    line-height: 1;
    margin-bottom: 25px;
    user-select: none;
}

.digit_title {
    font-family: var(--neno);
    font-size: 1.85rem;
    font-weight: 700;
    color: #001629;
    margin-bottom: 15px;
    line-height: 1.2;
}

.digit_card.highlighted .digit_title {
    color: #ffffff;
}

.digit_text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

.digit_card.highlighted .digit_text {
    color: #94a3b8;
}

.digit_footer {
    margin-top: auto;
    padding-top: 10px;
}

.digit_link {
    font-family: var(--neno);
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.digit_link svg {
    transition: transform 0.3s ease;
}

.digit_link:hover {
    color: #0d9488;
}

.digit_link:hover svg {
    transform: translate(3px, -3px);
}

.digit_card.highlighted .digit_link {
    color: var(--green);
}

.digit_card.highlighted .digit_link:hover {
    color: #5cfce8;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .digit_card_wrapper {
        gap: 15px;
    }

    .digit_card {
        padding: 35px 20px;
    }

    .digit_letter {
        font-size: 4.5rem;
    }

    .digit_title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .digit_card_wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .digit_card {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .digit_card_wrapper {
        gap: 20px;
    }

    .digit_card {
        flex: 0 0 100%;
        max-width: 450px;
    }
}

/* ==========================================================================
   Nine Strategic Goals Section
   ========================================================================== */

.goals-section {
    background-color: #F8FAFC;
    /* Light gray background */
    padding: 100px 0;
}

.goals-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.goals-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px 0;
}

.goals-description {
    font-family: var(--inter);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 50px;
    max-width: 720px;
}

/* Goals Grid */
.goals-grid {
    margin-top: 20px;
}

.goal-card-col {
    display: flex;
}

.goal-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    padding: 40px 35px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.06);
    border-color: rgba(217, 172, 89, 0.25);
}

.goal-tag {
    font-family: var(--neno);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.goal-title {
    font-family: var(--neno);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.goal-motto {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    color: #8A99AD;
    margin: 0 0 25px 0;
}

.goal-text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .goals-section {
        padding: 70px 0;
    }

    .goals-title {
        font-size: 2.2rem;
    }

    .goal-card {
        padding: 30px 25px;
    }

    .goal-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .goals-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
}

/* ==========================================================================
   Roadmap Section
   ========================================================================== */

.roadmap-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 100px 0;
}

.roadmap-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.roadmap-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px 0;
}

.roadmap-description {
    font-family: var(--inter);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 50px;
    max-width: 800px;
}

/* Pillar Cards */
.pillar-card-col {
    display: flex;
}

.pillar-card {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.06);
}

.pillar-card-header {
    background-color: var(--navy);
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.pillar-card-title {
    font-family: var(--neno);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.pillar-badge {
    font-family: var(--neno);
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    background-color: rgba(217, 172, 89, 0.12);
    border: 1px solid rgba(217, 172, 89, 0.25);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pillar-card-body {
    background-color: #FAFBFD;
    padding: 35px 40px;
    display: flex;
    gap: 60px;
    flex-grow: 1;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pillar-stat {
    display: flex;
    flex-direction: column;
}

.pillar-stat-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-stat-val {
    color: var(--navy-light);
}

.pillar-stat-lbl {
    font-family: var(--neno);
    font-size: 10px;
    font-weight: 700;
    color: #8A99AD;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .roadmap-section {
        padding: 70px 0;
    }

    .roadmap-title {
        font-size: 2.2rem;
    }

    .pillar-card-header {
        padding: 20px 25px;
    }

    .pillar-card-body {
        padding: 30px;
        gap: 40px;
    }

    .pillar-stat-val {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .roadmap-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 575.98px) {
    .pillar-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pillar-badge {
        align-self: flex-start;
    }
}

/* ==========================================================================
   Sequencing Logic Section
   ========================================================================== */

.sequencing-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.sequence-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.sequence-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 50px 0;
}

/* Sequencing Cards */
.seq-card-col {
    display: flex;
}

.seq-card {
    position: relative;
    width: 100%;
    padding: 40px 35px 50px 35px;
    background-color: #F8FAFC;
    /* Light gray box background */
    border-top: 5px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.seq-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    border-top-color: var(--navy);
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.06);
}

.seq-card-goal {
    font-family: var(--neno);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.seq-card-title {
    font-family: var(--neno);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.seq-card-text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}


/* ==========================================================================
   Enablers & Monitoring Section
   ========================================================================== */

.enablers-section {
    background-color: #F8FAFC;
    /* Light gray background */
    padding: 100px 0;
}

.enablers-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.enablers-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 50px 0;
}

/* Enabler Cards */
.enabler-card-col {
    display: flex;
}

.enabler-card {
    position: relative;
    width: 100%;
    padding: 40px 35px 45px 35px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.enabler-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 172, 89, 0.3);
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.06);
}

.enabler-card-title {
    font-family: var(--neno);
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.enabler-card-text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

/* Responsive updates for new sections */
@media (max-width: 991.98px) {

    .sequencing-section,
    .enablers-section {
        padding: 70px 0;
    }

    .sequence-title,
    .enablers-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .seq-card,
    .enabler-card {
        padding: 30px 25px;
    }

    .seq-card-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Three-Tier Institutional Arrangement Section
   ========================================================================== */

.institutional-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 100px 0;
}

.inst-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.inst-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 50px 0;
}

/* Institutional Cards */
.inst-card-col {
    display: flex;
}

.inst-card {
    position: relative;
    width: 100%;
    padding: 50px 40px 60px 40px;
    background-color: var(--navy);
    border-top: 5px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 27, 46, 0.08);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.inst-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 27, 46, 0.15);
    background-color: #00223D;
    /* Slightly lighter navy on hover */
}

.inst-card-level {
    font-family: var(--neno);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}

.inst-card-title {
    font-family: var(--neno);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 20px 0;
    min-height: 76px;
    /* Align text start lines */
}

.inst-card-text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    color: #CBD6E2;
    margin: 0;
}

/* Responsive updates for institutional section */
@media (max-width: 991.98px) {
    .institutional-section {
        padding: 70px 0;
    }

    .inst-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .inst-card {
        padding: 40px 30px 45px 30px;
    }

    .inst-card-title {
        font-size: 1.4rem;
        min-height: auto;
    }
}

/* ==========================================================================
   Flagship Platforms Section
   ========================================================================== */

.flagships-section {
    background-color: #F8FAFC;
    /* Light gray background */
    padding: 100px 0;
}

.flagships-tagline {
    font-family: var(--neno);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.flagships-title {
    font-family: var(--neno);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px 0;
}

.flagships-description {
    font-family: var(--inter);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 50px;
    max-width: 800px;
}

/* Flagship Cards */
.flagship-card-col {
    display: flex;
}

.flagship-card {
    position: relative;
    width: 100%;
    padding: 45px 35px 50px 35px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 172, 89, 0.3);
    box-shadow: 0 20px 45px rgba(0, 45, 74, 0.06);
}

.flagship-card-title {
    font-family: var(--neno);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.flagship-card-text {
    font-family: var(--inter);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    color: #4A5568;
    margin: 0;
}

/* Responsive updates for flagship section */
@media (max-width: 991.98px) {
    .flagships-section {
        padding: 70px 0;
    }

    .flagships-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .flagship-card {
        padding: 30px 25px;
    }

    .flagship-card-title {
        font-size: 1.25rem;
    }
}


/* Make section headers bright on dark background */
.ai-assistant-section {
    background: linear-gradient(135deg, #000c18 0%, #002244 50%, #001122 100%);
    position: relative;
    overflow: hidden;
}

.ai-assistant-section .about-section-text h1 {
    color: #ffffff !important;
}

.ai-assistant-section .about-section-text h1 span {
    color: rgba(255, 255, 255, 0.75) !important;
}

.ai-assistant-section .about-section-text p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.ai_assistant_section_grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px),
        radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.assistant_card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.assistant_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 30px;
    z-index: 2;
}

.assistant_brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

@keyframes avatar_glow {
    0% {
        box-shadow: 0 4px 15px rgba(59, 195, 178, 0.15), 0 0 0 rgba(59, 195, 178, 0.1);
        border-color: rgba(59, 195, 178, 0.2);
    }

    50% {
        box-shadow: 0 4px 20px rgba(59, 195, 178, 0.35), 0 0 15px rgba(59, 195, 178, 0.5);
        border-color: rgba(59, 195, 178, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(59, 195, 178, 0.15), 0 0 0 rgba(59, 195, 178, 0.1);
        border-color: rgba(59, 195, 178, 0.2);
    }
}

.assistant_avatar {
    width: 52px;
    height: 52px;
    background: rgba(0, 34, 68, 0.6);
    border: 1px solid rgba(59, 195, 178, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3BC3B2;
    animation: avatar_glow 3.5s infinite ease-in-out;
}

.robot_face_svg {
    width: 26px;
    height: 26px;
}

.assistant_brand_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.assistant_title {
    font-family: var(--neno);
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.assistant_subtitle {
    font-family: var(--inter);
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes status_pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.status_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    display: inline-block;
    animation: status_pulse 2s infinite;
}

.reset_chat_btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset_chat_btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: rotate(-90deg);
}

.assistant_chat_feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 12px;
}

/* Custom Scrollbar for Chat Feed */
.assistant_chat_feed::-webkit-scrollbar {
    width: 6px;
}

.assistant_chat_feed::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.assistant_chat_feed::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.assistant_chat_feed::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.chat_message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    max-width: 85%;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.msg_avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #3BC3B2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.msg_avatar.user_avatar {
    background-color: rgba(59, 195, 178, 0.15);
    color: #3BC3B2;
    border: 1px solid rgba(59, 195, 178, 0.3);
    box-shadow: 0 2px 8px rgba(59, 195, 178, 0.1);
}

.assistant_msg {
    align-self: flex-start;
}

.user_msg {
    align-self: flex-end;
    justify-content: flex-end;
}

.message_bubble {
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.assistant_msg .message_bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    border-top-left-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.user_msg .message_bubble {
    background: rgba(59, 195, 178, 0.12);
    border: 1px solid rgba(59, 195, 178, 0.25);
    color: #ffffff;
    border-top-right-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.message_text {
    font-family: var(--inter);
    font-size: 0.75rem;
    line-height: 1.65;
    margin: 0;
}

.message_text p.chat_paragraph {
    margin: 0 0 8px 0;
}

.message_text p.chat_paragraph:last-child {
    margin-bottom: 0;
}

.message_text ul.chat_list,
.message_text ol.chat_list {
    margin: 6px 0 10px 0;
    padding-left: 18px;
}

.message_text ul.chat_list:last-child,
.message_text ol.chat_list:last-child {
    margin-bottom: 0;
}

.message_text li {
    margin-bottom: 5px;
}

.message_text li strong,
.message_text p strong,
.message_text strong {
    color: #ffffff;
    font-weight: 700;
}

.message_text em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.message_text code {
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.7rem;
}

.message_text .chat_heading {
    margin: 10px 0 6px 0;
    color: #3BC3B2;
    font-weight: 700;
    font-size: 0.82rem;
}

.highlight_link {
    color: #3BC3B2;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.highlight_link:hover {
    color: #5cfce8;
}

.message_meta {
    font-family: var(--inter);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.user_msg .message_meta {
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
}

.assistant_suggestions_container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 25px;
    scrollbar-width: none;
}

.assistant_suggestions_container::-webkit-scrollbar {
    display: none;
}

.suggestion_pill {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 18px;
    font-family: var(--inter);
    font-size: 0.75rem;
    font-weight: 500;
    color: #e2e8f0;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.suggestion_pill:hover {
    border-color: #3BC3B2;
    color: #3BC3B2;
    background-color: rgba(59, 195, 178, 0.15);
    box-shadow: 0 4px 12px rgba(59, 195, 178, 0.2);
}

.assistant_input_area {
    display: flex;
    flex-direction: column;
}

.input_box_wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 8px 8px 20px;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input_box_wrapper:focus-within {
    border-color: #3BC3B2;
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 4px rgba(59, 195, 178, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat_input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-family: var(--inter);
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
}

.chat_input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mic_btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mic_btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #3BC3B2;
}

.ask_btn {
    background-color: #3BC3B2;
    color: #001629;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-family: var(--neno);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ask_btn svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ask_btn:hover {
    background-color: #5cfce8;
    box-shadow: 0 4px 15px rgba(59, 195, 178, 0.4);
}

.ask_btn:hover svg {
    transform: translate(3px, -3px) scale(1.1);
}

.assistant_disclaimer {
    font-family: monospace, Courier, sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.6;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Chatbot Canvas & Interactive Z-indexes */
#chatbot-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.assistant_card_header,
.assistant_chat_feed,
.assistant_suggestions_container,
.assistant_input_area {
    position: relative;
    z-index: 2;
}

/* Responsive styles */
@media (max-width: 768px) {
    .assistant_card {
        padding: 25px 20px;
    }

    .chat_message {
        max-width: 95%;
    }

    .message_bubble {
        padding: 16px 18px;
    }

    .assistant_title {
        font-size: 1.35rem;
    }

    .ask_btn span {
        display: none;
    }

    .ask_btn {
        padding: 10px 14px;
    }
}

/* ==========================================================================
   AI Assistant Custom Inner Elements
   ========================================================================== */

.typing-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    margin-left: 6px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #3BC3B2;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

.message_sources {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

.message_sources strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.source-item {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.65);
}

.source-item em {
    color: #ffffff;
    font-style: normal;
}

/* CSP compliance helper classes */
.bg-white-section {
    background-color: #fff;
}

.status_dot.status_dot_online {
    background-color: #22c55e;
}

.status_dot.status_dot_offline {
    background-color: #ef4444;
}

.message_bubble.message_bubble_error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.typing_message_text {
    display: flex;
    gap: 4px;
    align-items: center;
    min-height: 20px;
}