/* General Body Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Header & Navbar Styles - Enhanced */
.navbar {
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 107, 187, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.navbar-brand img {
    margin-right: 10px;
    height: 40px;
    transition: all 0.3s ease;
}

.navbar-dark {
    background: rgba(0, 107, 187, 0.95) !important;
}

.navbar .nav-link {
    position: relative;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #fff;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar .nav-link:hover::after {
    width: 70%;
    opacity: 1;
}

.navbar .dropdown-menu {
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar .dropdown-item {
    padding: 12px 15px;
    transition: all 0.2s;
    position: relative;
}

.navbar .dropdown-item:hover {
    background-color: rgba(0, 107, 187, 0.1);
    padding-left: 20px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

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

.scrolled {
    padding: 0.5rem 1rem;
    background: rgba(0, 107, 187, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .navbar-brand img {
    height: 35px;
}

/* Hero Section - Redesigned */
.hero-section {
    position: relative;
    background: url('img/banner.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 120px;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* background: linear-gradient(135deg, 
        rgba(9, 84, 132, 0.85) 0%, 
        rgba(31, 162, 255, 0.65) 100%); */
    /* backdrop-filter: blur(3px); */
    /* -webkit-backdrop-filter: blur(3px); */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ff9d2d;
    letter-spacing: -0.3px;
}

.hero-text {
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.hero-left {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

.hero-content {
    max-width: 540px;
}

/* Stats Container - Enhanced */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.18);
    text-decoration: none;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.stat-icon {
    font-size: 26px;
    color: #ff9d2d;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 157, 45, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.stat-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff, #ffe1b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 157, 45, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    font-weight: 500;
}

.view-stats-link {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #ff9d2d;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.view-stats-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .view-stats-link {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover .view-stats-link i {
    transform: translateX(3px);
}

/* Hero Cards - Redesigned for originality */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.hero-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 500px;
}

.hero-card {
    position: relative;
    display: flex;
    align-items: center;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(0);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card:hover {
    text-decoration: none;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 2;
}

.hero-card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    z-index: 3;
}

.hero-card .card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-card:hover .card-icon {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.85);
}

.card-text {
    flex-grow: 1;
    transition: all 0.3s ease;
}

.hero-card:hover .card-text {
    transform: translateX(5px);
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-card p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 140, 0, 0.15);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 10px 2px rgba(255, 140, 0, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* Census card */
.census-card {
    background-color: rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.census-card .card-bg {
    background-color: #ff8c00;
    background-image: url('img/census-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.census-card .card-overlay {
    background: linear-gradient(90deg, 
        rgba(255, 140, 0, 0.9) 0%, 
        rgba(255, 106, 0, 0.7) 100%);
}

.census-card .card-icon {
    color: #ff8c00;
}

/* NSI card */
.nsi-card {
    background-color: rgba(0, 107, 187, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nsi-card .card-bg {
    background-color: #006bbb;
    background-image: url('img/nsi-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.nsi-card .card-overlay {
    background: linear-gradient(90deg, 
        rgba(0, 107, 187, 0.9) 0%, 
        rgba(0, 85, 165, 0.7) 100%);
}

.nsi-card .card-icon {
    color: #2196F3;
}

/* GBV card */
.gbv-card {
    background-color: rgba(106, 13, 173, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gbv-card .card-bg {
    background-color: #6a0dad;
    background-image: url('gbv/img/gbv.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.gbv-card .card-overlay {
    background: linear-gradient(90deg, 
        rgba(106, 13, 173, 0.9) 0%, 
        rgba(90, 9, 160, 0.7) 100%);
}

.gbv-card .card-icon {
    color: #b388ff;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #006bbb, #ff8c00);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-content .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-content p {
    color: #6c757d;
    line-height: 1.7;
}

/* Program Cards Section (keeping for reference) */
.programs-section {
    position: relative;
    padding: 60px 0;
    background-color: #fff;
}

.program-card {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border-top: 5px solid #006bbb;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #333;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #006bbb;
}

.program-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    font-weight: 600;
    color: #006bbb;
    display: flex;
    align-items: center;
}

.card-footer i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.program-card:hover .card-footer i {
    transform: translateX(5px);
}

/* Frameworks Section */
.frameworks-section {
    padding: 80px 0;
    background-color: #fff;
}

.framework-items {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.framework-item {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.framework-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.framework-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.framework-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #006bbb, #ff8c00);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.framework-icon i {
    font-size: 30px;
    color: #006bbb;
}

.framework-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

/* Footer Styles */
.footer {
    background: #222;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand img {
    margin-right: 15px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 500;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #ff8c00;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8c00;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #ff8c00;
    transform: translateY(-5px);
}

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

.footer-bottom {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-card {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-left, .hero-right {
        margin-bottom: 40px;
    }
    
    .hero-cards {
        margin: 0 auto;
    }
    
    .framework-items {
        flex-direction: column;
    }
    
    .navbar {
        background: rgba(0, 107, 187, 1) !important;
    }
}

/* Animation Styles */
.highlight {
    animation: pulse 1.5s ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 107, 187, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 107, 187, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 107, 187, 0);
    }
}

/* AOS Animation Enhancements */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s;
}

/* Keep some existing styles for backward compatibility */
.level-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.level-card.active {
    border-left: 4px solid #0066cc;
}

.chart-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.chart-card h3 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.chart-container {
    height: 300px;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Add these to your existing style.css */
.indicator-table {
    margin-top: 20px;
}

.indicator-name {
    font-weight: 500;
    cursor: help;
}

.growth-rate {
    font-weight: bold;
}

.growth-rate.positive {
    color: #28a745;
}

.growth-rate.negative {
    color: #dc3545;
}

.indicator-table td {
    vertical-align: middle;
}

.chart-container {
    min-height: 300px;
}

.modal-body .chart-container {
    height: 250px;
}

.nav-tabs {
    margin-bottom: 20px;
}

.btn-info, .btn-primary {
    margin: 0 2px;
}

.tooltip-inner {
    max-width: 300px;
    text-align: left;
}

/* Add these to your existing styles */
.chart-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

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

.chart-header .btn-group {
    display: flex;
    gap: 0.5rem;
}

.download-chart-btn,
.download-table-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-chart-btn i,
.download-table-btn i {
    font-size: 0.9em;
}

.table-responsive {
    position: relative;
}

.chart-header h4 {
    margin: 0;
    color: #333;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.indicator-row {
    cursor: pointer;
}

.indicator-row:hover {
    background-color: #f8f9fa;
}

.info-btn {
    padding: 5px 10px;
    font-size: 0.9rem;
}

.criterion-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 20px;
}

.criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.criterion-icon {
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.criterion-icon i {
    font-size: 24px;
    color: #0066cc;
}

.criterion-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.indicator-count {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.criterion-desc {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.criterion-section {
    padding-top: 60px;
    margin-top: -60px;
}

/* Add to your existing styles */
.container-fluid {
    max-width: 1800px;
}

.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 500;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

.criterion-charts h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Framework Level Cards */
.level-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.level-card.active {
    border-left: 4px solid #0066cc;
}

.level-card .card-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    position: relative;
    text-align: center;
}

.level-card .card-header i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.level-card .level-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    margin-top: 0.5rem;
}

.level-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.level-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.level-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.level-card .btn {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.level-card .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.level-card .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Add these styles */
.indicator-name {
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator-name:hover {
    text-decoration: underline;
    color: #004999;
}

.search-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.input-group-text {
    background-color: #006bbb;;
    color: white;
    border: none;
}

#indicatorSearch {
    border-right: none;
}

#indicatorSearch:focus {
    box-shadow: none;
    border-color: #006bbb;;
}

.highlight-search {
    background-color: #fff3cd;
}


