:root {
  --primary-blue: #1578be;
  --secondary-blue: #04407c;
  --accent-red: #d9534f;
  --dark-black: #212529;
  --light-gray: #f8f9fa;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;

  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md: 1.0625rem;   /* 17px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */

  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-xbold: 800;

  --lh-tight: 1.2;
  --lh-heading: 1.3;
  --lh-body: 1.6;
  --lh-loose: 1.75;
}

/* =========================================================
   RESET / GLOBAL
   ========================================================= */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-gray);
            color: var(--dark-black);
        } */
        body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
  background-color: var(--light-gray);
  color: var(--dark-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
        /* Top Navigation */
        .top-nav {
            background-color: #0a56a1;
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }
        
        .top-nav a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .top-nav a:hover {
            color: white;
        }
        
        /* Main Navigation */
        .main-navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.3rem;
        }
        
        .nav-link {
            color: var(--dark-black);
            font-weight: 300;
            padding: 0.2rem 1rem;
            transition: all 0.3s;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        .search-box {
            border-radius: 20px;
            border: 1px solid #ced4da;
            padding: 0.375rem 1rem;
        }
        
        .search-btn {
            border-radius: 20px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.375rem 1rem;
        }
        /* Add this to your existing CSS */
   .navbar-nav > .nav-item:not(:last-child) {
    position: relative;
    margin-right: 5px;
    padding-right: 15px; /* Increased spacing */
}

/* Vertical line separator (longer version) */
.navbar-nav > .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px; /* Increased height */
    width: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Ensure dropdowns remain unaffected */
.navbar-nav .dropdown-menu .nav-item::after {
    display: none;
}

   

    /* Adjust dropdown menu styling */
   
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 2.3rem;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-weight: 300;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            opacity: 0.85;
        }
        
        .stat-card {
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 0.5rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Updated CSS for the Latest Updates Section */
.updates-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: 100%;
}

.updates-header {
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.updates-ticker {
    height: 340px;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease;
}

.update-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
    align-items: flex-start;
}

.update-item:last-child {
    border-bottom: none;
}

.update-image {
    flex: 0 0 100px;
}

.update-image img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.update-text {
    flex: 1;
}

.update-date {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.update-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.update-desc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.4;
}

.ticker-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.ticker-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ticker-btn:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}

.ticker-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}
.ticker-btn {
        background-color: white;
        color: #0056b3;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .ticker-btn:hover {
        background-color: #0056b3;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0, 86, 179, 0.2);
    }
    
    .ticker-btn:active {
        transform: translateY(0);
    }
    
    .btn-tooltip {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #212529;
        color: white;
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    
    .btn-tooltip::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px 5px 0;
        border-style: solid;
        border-color: #212529 transparent transparent;
    }
    
    .ticker-btn:hover .btn-tooltip {
        opacity: 1;
        visibility: visible;
        top: -35px;
    }
        
      /* Content Sections */
    .section-title {
        color: var(--secondary-blue);
        font-weight: 700;
        position: relative;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--accent-red);
    }
    
    /* Feature Card */
    /* Enhanced Feature Card */
    .feature-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Enhanced Report Cover */
    .report-cover-container {
        height: 200px;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    }
    
    .report-cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    .cover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .feature-card:hover .report-cover-image {
        transform: scale(1.08);
    }
    
    .feature-card:hover .cover-overlay {
        opacity: 1;
    }
    
    .default-cover {
        width: 100%;
        height: 100%;
        color: var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .feature-card:hover .default-cover {
        color: var(--accent-red);
        transform: scale(1.05);
    }
    
    /* Report Details */
    .report-details {
        padding: 1.25rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .report-title {
        font-weight: 600;
        color: var(--secondary-blue);
        margin-bottom: 0.5rem;
        font-size: 1rem;
        line-height: 1.4;
        flex-grow: 1;
        transition: color 0.3s ease;
    }
    
    .feature-card:hover .report-title {
        color: var(--primary-blue);
    }
    
    .year-badge {
        display: inline-block;
        background-color: var(--accent-red);
        color: white;
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
        border-radius: 12px;
        margin-left: 0.5rem;
        vertical-align: middle;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover .year-badge {
        background-color: var(--primary-blue);
    }
    
    /* Enhanced Download Button */
    .btn-download {
        background-color: var(--primary-blue);
        color: white;
        border: none;
        border-radius: 6px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        z-index: 1;
    }
    
    .btn-text {
        position: relative;
        z-index: 2;
    }
    
    .hover-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary-blue);
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 1;
    }
    
    .btn-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(41, 98, 255, 0.2);
    }
    
    .btn-download:hover .hover-effect {
        transform: translateY(0);
    }
    
    .btn-download i {
        font-size: 0.8rem;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .btn-download:hover i {
        transform: translateY(-2px);
    }
    
    /* Call to Action Styles */
    .cta-box {
        border-left: 4px solid var(--accent-red);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .btn-primary {
        background-color: var(--primary-blue);
        border: none;
        padding: 0.75rem 2rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: var(--secondary-blue);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(41, 98, 255, 0.3);
    }
        
        /* Footer */
        .footer {
            background-color: var(--dark-black);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-title {
            color: white;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        
        /* Animations */
        .animate-delay-1 {
            animation-delay: 0.2s;
        }
        
        .animate-delay-2 {
            animation-delay: 0.4s;
        }
        
        .animate-delay-3 {
            animation-delay: 0.6s;
        }
/* Updates Container */
        .updates-container {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 0;
            height: 100%;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        /* Header */
        .updates-header-container {
            padding: 1.5rem 1.5rem 1rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        }
        
        .updates-header {
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
            margin: 0;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .header-icon {
            background-color: rgba(255, 255, 255, 0.15);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }
        
        .header-decoration {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-red);
            border-radius: 3px;
        }
        
        /* Slider Styles */
        .updates-slider {
            position: relative;
            height: 380px;
            overflow: hidden;
            border-radius: 0 0 10px 10px;
        }
        
        .slider-container {
            height: 100%;
            width: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
            transform: translateX(100%);
        }
        
        .slide.active {
            opacity: 1;
            transform: translateX(0);
            z-index: 2;
        }
        
        .slide.prev {
            transform: translateX(-100%);
            z-index: 1;
        }
        
        .slide.next {
            transform: translateX(100%);
            z-index: 1;
        }
        
        .slide-image {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .slide-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.4) 0%, rgba(0, 51, 102, 0.7) 100%);
        }
        
        .slide-content {
            flex: 1;
            padding: 1.5rem;
            background: white;
            display: flex;
            flex-direction: column;
        }
        
        .slide-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 2;
            background: var(--primary-blue);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .slide-badge.highlight {
            background: var(--accent-red);
        }
        
        .slide-date {
            font-size: 0.8rem;
            color: var(--accent-red);
            margin-bottom: 0.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .slide-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-blue);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        
        .slide-desc {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .slide-link {
            align-self: flex-start;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .slide-link:hover {
            color: var(--secondary-blue);
        }
        
        .slide-link i {
            margin-left: 0.5rem;
            font-size: 0.7rem;
            transition: transform 0.2s ease;
        }
        
        .slide-link:hover i {
            transform: translateX(3px);
        }
        
        /* Navigation Arrows - Always Visible */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            color: var(--primary-blue);
            font-size: 1rem;
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 1;
        }
        
        .slider-nav:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav.prev {
            left: 15px;
        }
        
        .slider-nav.next {
            right: 15px;
        }
        
        /* Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .slide-image {
                height: 150px;
            }
        }

        .sidebar .sidebar-widget {
  margin: 0 0 30px;
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #4DA6FF;
  transition: all 0.3s ease;
}

.sidebar .sidebar-widget:hover {
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.15);
}

.sidebar .sidebar-widget h4 {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  line-height: 1;
  color: #000;
  border-bottom: 1px solid #E6EDF6;
  padding-bottom: 20px;
}

.sidebar .sidebar-widget h4:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 2px;
  content: "";
  background: #4DA6FF;
  transition: width 0.3s ease;
}

.sidebar .sidebar-widget:hover h4:after {
  width: 75px;
}

.category-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.category-box ul li:last-child {
  margin-bottom: 0;
}

.category-box ul li a {
  display: block;
  transition: all 0.3s ease;
  color: #555555;
  text-decoration: none !important; /* Removes underline */
  padding: 8px 5px;
  border-radius: 4px;
}

.category-box ul li a i {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 12px;
  color: #555555;
  transition: all 0.3s ease;
}

.category-box ul li:hover {
  transform: translateX(3px);
}

.category-box ul li a:hover {
  color: #16A850;
  padding-left: 8px;
  background-color: rgba(22, 168, 80, 0.05);
}

.category-box ul li a:hover i {
  color: #16A850;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sidebar .sidebar-widget {
    padding: 20px;
  }
  
  .category-box ul li a {
    padding: 6px 5px;
  }
}
/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Base styles */

/* Breadcrumb Section */
.breadcrumb-section {
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(212,0,0,.18), transparent 55%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(160deg, #0b1e35 0%, #0f2a4a 60%, #0b1e35 100%);
  padding: 1.6rem 0 1.4rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Red → blue bottom accent line */
.breadcrumb-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d40000 0%, #1578be 50%, transparent 100%);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 0.15rem 0.65rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none;
}

.breadcrumb-item i {
  margin-right: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.7;
}
.stats-container {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.05);
}
    
    .row.d-flex {
  display: flex;
  flex-wrap: wrap; /* Important for responsive behavior */
}

/* Make all direct children of row (columns) equal height */
.row.d-flex > [class*="col-"] {
  display: flex;
}
/* Main content container */
.space-ptb {
  padding-top: 2rem;
  padding-bottom: 4rem;
}


/* About Widget */
.about-widget {
  padding: 2.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #4DA6FF;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.about-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.03) 0%, rgba(255,255,255,0) 100%);
  z-index: 0;
}

.widget-header {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.widget-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.title-decoration {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #4DA6FF, #347AB7);
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* Content styles */
.widget-content {
  position: relative;
  z-index: 1;
}

.highlight-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  font-weight: 400;
  background: rgba(77, 166, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #4DA6FF;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4DA6FF, #347AB7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Timeline styles */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #4DA6FF, #347AB7);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid #4DA6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4DA6FF;
  font-size: 0.9rem;
}

.timeline-content {
  padding: 1rem 1.5rem;
  background: rgba(77, 166, 255, 0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(77, 166, 255, 0.3);
}

.timeline-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Sidebar Styles */
.sidebar {
  position: relative;
}

.sidebar-widget.categories {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #4DA6FF;
  height: 100%;
}

.sidebar-widget h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(77, 166, 255, 0.2);
}

.category-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-box ul li {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.category-box ul li:hover {
  transform: translateX(5px);
}

.category-box ul li a {
  color: #4a5568;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.category-box ul li a:hover {
  background: rgba(77, 166, 255, 0.1);
  color: #347AB7;
}

.category-box ul li a i {
  margin-right: 0.75rem;
  color: #4DA6FF;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.category-box ul li a:hover i {
  color: #347AB7;
  transform: translateX(3px);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-widget {
    padding: 1.5rem;
  }
  
  .widget-title {
    font-size: 1.5rem;
  }
  
  .info-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .highlight-paragraph {
    padding: 1rem;
  }
  
  .timeline::before {
    left: 16px;
  }
  
  .timeline-marker {
    left: -28px;
  }
  
  .breadcrumb-section {
    padding: 1rem 0;
  }
  
  .sidebar-widget.categories {
    padding: 1.5rem;
  }
}
  /* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Base styles */
.objectives-widget {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #4DA6FF;
}

/* Typography */
.widget-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4DA6FF, #347AB7);
  border-radius: 3px;
}

.widget-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #347AB7;
  margin: 1.8rem 0 1.2rem;
  position: relative;
  padding-left: 1.8rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #347AB7;
  border-radius: 50%;
}

/* List styling */
.styled-list {
  padding-left: 0;
  list-style: none;
  counter-reset: item-counter;
}

.styled-list li {
  counter-increment: item-counter;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.styled-list li::before {
  content: counter(item-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4DA6FF, #347AB7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.list-item-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(75, 156, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.list-icon {
  color: #347AB7;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.styled-list li span {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.styled-list li.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effects */
.list-item-content:hover {
  background: rgba(75, 156, 255, 0.1);
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .widget-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .styled-list li {
    padding-left: 2.5rem;
  }
}
       /* Stats Slider */
.stats-slider {
    position: relative;
}

.stats-slide {
    display: none;
}

.stats-slide.active {
    display: block;
}

.stats-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-slider-prev,
.stats-slider-next {
    background: transparent;
    border: none;
    color: white;
    padding: 10 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.stats-slider-dots {
    display: flex;
    gap: 10px;
}

.stats-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    padding: 0;
    cursor: pointer;
}

.stats-dot.active {
    background: white;
}

/* Stats Card */
.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Title */
.stats-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
/* CTA Container */
/* CTA Container with red accent */
.cta-container {
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Red accent border */
.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #e63946, #d90429);
}

/* Hover effects */
.cta-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

/* Button styles */
.btn-danger {
    background: linear-gradient(to right, #e63946, #d90429);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.btn-danger:hover {
    background: linear-gradient(to right, #d90429, #c1121f);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

/* Title styles */
.cta-title {
    color: #2b2d42 !important;
    font-size: 1.05rem;
    position: relative;
    padding-left: 8px;
}

.cta-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    height: 80%;
    width: 3px;
    background-color: #e63946;
    border-radius: 3px;
}

/* Description text */
.cta-description {
    color: #6c757d !important;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* Section Styling */
    .highlight-text {
        position: relative;
        display: inline-block;
        padding: 0 10px;
    }
    
    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(var(--accent-red-rgb), 0.3);
        z-index: -1;
        border-radius: 4px;
    }
    
    .bg-pattern {
        background-image: radial-gradient(circle, rgba(var(--primary-blue-rgb), 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    /* Card Styles */
    .focus-card {
        position: relative;
        perspective: 1000px;
        border-radius: 16px;
        overflow: visible;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        border-radius: 16px;
    }
    
    .focus-card:hover .card-inner {
        transform: translateY(-10px);
    }
    
    .card-border {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
        z-index: -1;
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(var(--primary-blue-rgb), 0.2);
    }
    
    .focus-card:hover .card-border {
        opacity: 1;
        transform: scale(1.02);
    }
    
    .card-front {
        background: white;
        border-radius: 16px;
        height: 100%;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .focus-card:hover .card-front {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    /* Active (Pre-hovered) Middle Card */
    .middle-card-active .card-inner {
        transform: translateY(-10px);
    }
    
    .active-border {
        opacity: 1;
        transform: scale(1.02);
        background: linear-gradient(135deg, var(--primary-blue), #ff6b6b);
        box-shadow: 0 10px 30px rgba(41, 98, 255, 0.3);
    }
    
    .active-front {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
    }
    
    .active-icon {
        transform: scale(1.1);
        color: var(--accent-red);
    }
    
    .active-icon-bg {
        background: rgba(var(--accent-red-rgb), 0.1);
        transform: scale(1);
        animation: pulse 2s infinite;
    }
    
    .active-title::after {
        width: 80px;
        background: var(--accent-red);
    }
    
    .active-btn {
        border-color: var(--accent-red);
        color: var(--accent-red);
    }
    
    /* Enhanced Hover State for Active Card */
    .middle-card-active:hover .card-inner {
        transform: translateY(-15px);
    }
    
    .middle-card-active:hover .active-border {
        background: linear-gradient(135deg, var(--primary-blue), #ff5252);
        box-shadow: 0 15px 40px rgba(41, 98, 255, 0.4);
        opacity: 1;
        transform: scale(1.05);
    }
    
    .middle-card-active:hover .active-front {
        transform: scale(1.01);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
    
    .middle-card-active:hover .active-icon {
        transform: scale(1.2);
        color: #ff5252;
    }
    
    .middle-card-active:hover .active-icon-bg {
        background: rgba(255, 82, 82, 0.15);
        transform: scale(1.1);
    }
    
    .middle-card-active:hover .active-title::after {
        width: 100%;
        background: #ff5252;
    }
    
    .middle-card-active:hover .active-btn {
        background: var(--accent-red);
        color: white;
        box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
    }
    
    /* Icon Styling */
    .feature-icon {
        position: relative;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -10px;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
        color: var(--primary-blue);
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }
    
    .focus-card:hover .feature-icon i {
        transform: scale(1.1);
        color: var(--accent-red);
    }
    
    .icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(var(--primary-blue-rgb), 0.1);
        border-radius: 50%;
        transform: scale(0.8);
        transition: all 0.4s ease;
    }
    
    .focus-card:hover .icon-bg {
        background: rgba(var(--accent-red-rgb), 0.1);
        transform: scale(1);
    }
    
    /* Text Styling */
    .feature-title {
        font-weight: 700;
        color: var(--secondary-blue);
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 10px;
    }
    
    .feature-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .focus-card:hover .feature-title::after {
        width: 80px;
        background: var(--accent-red);
    }
    
    .card-text {
        color: #555;
        margin-bottom: 1rem;
    }
    
    .card-note {
        font-size: 0.85rem;
        color: #666;
        font-style: italic;
    }
    
    .card-highlight {
        background: rgba(var(--primary-blue-rgb), 0.08);
        padding: 12px;
        border-radius: 8px;
        color: var(--secondary-blue);
        font-size: 0.9rem;
    }
    
    /* List Styling */
    .feature-list {
        list-style: none;
        padding-left: 0;
    }
    
    .feature-list li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 0;
        color: #444;
    }
    
    .feature-list i {
        color: var(--accent-red);
    }
    
    /* Button Styling */
    .btn-explore {
        background: white;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
        border-radius: 8px;
        padding: 8px 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-explore:hover {
        background: var(--primary-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(var(--primary-blue-rgb), 0.2);
    }
    
    .focus-card:hover .btn-explore {
        border-color: var(--accent-red);
        color: var(--accent-red);
    }
    
    .focus-card:hover .btn-explore:hover {
        background: var(--accent-red);
        color: white;
    }
    
    /* Animation */
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.05); opacity: 1; }
        100% { transform: scale(1); opacity: 0.8; }
    }
   /* Hover dropdown for desktop only */
    @media (min-width: 992px) {
        .dropdown-hover:hover .dropdown-menu {
            display: block;
            margin-top: 0; /* remove the gap so it doesn't close */
        }
        
        .dropdown-menu {
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.2s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    }
    
    /* Dropdown menu styling */
    .dropdown-menu {
        border-radius: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 1.5rem;
        font-weight: 500;
        color: var(--dark-black);
        transition: all 0.2s;
    }
    
    .dropdown-item:hover {
        background-color: rgba(0, 86, 179, 0.1);
        color: var(--primary-blue);
        padding-left: 1.75rem;
    }
    
    .dropdown-divider {
        margin: 0.5rem 0;
        border-color: rgba(0, 0, 0, 0.05);
    }
     .stats-container {
    /* background: rgba(255, 255, 255, 0.96); */
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.9rem 1rem 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stats-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0.35rem;
}

.stats-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    /* color: #000; */
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stats-chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d40000, #000000);
    color: #fff;
    font-size: 0.75rem;
}

.stats-subtitle {
    font-size: 0.75rem;
    color: #ffffff;
}

.stats-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(to right, #d40000, #000000, #0051a8);
    color: #fff;
    white-space: nowrap;
}

/* Cards */
.stat-card {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 0.85rem;
    /* border: 1px solid rgba(255, 255, 255, 0.8); */
    backdrop-filter: blur(6px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-color: rgba(0, 81, 168, 0.4);
}

.stat-header {
    font-size: 0.7rem;
}

.stat-chip {
    font-size: 0.65rem;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.06);
}

.chip-red {
    background: red;
    color: #ffffff;
}

.chip-amber {
    background: orange;
    color: #ffffff;
}

.chip-dark {
    background: black;
    color: #ffffff;
}

.chip-blue {
    background: blue;
    color: #ffffff;
}

.chip-green {
    background: green;
    color: #ffffff;
}

.stat-trend {
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.stat-trend.positive {
    color: #ffffff;
}

.stat-trend.negative {
    color: #ffffff;
}

.stat-trend.neutral {
    color: #ffffff;
}

.stat-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.stat-footnote {
    font-size: 0.7rem;
    color: #ffffff;
}

/* Slider controls */
.stats-slider-prev,
.stats-slider-next {
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    font-size: 0.75rem;
}

.stats-slider-prev:hover,
.stats-slider-next:hover {
    background: linear-gradient(135deg, #d40000, #0051a8);
    color: #fff;
}

.stats-slider-dots .stats-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    margin: 0 2px;
    background: rgba(0, 0, 0, 0.2);
}

.stats-slider-dots .stats-dot.active {
    width: 16px;
    background: linear-gradient(135deg, #d40000, #0051a8);
}

.stats-source {
    font-size: 0.7rem;
    color: #ffffff;
}
 .slide-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

/* Smooth dark gradient overlay */
.slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    transition: all 0.35s ease-in-out;
}

.slide:hover .slide-image::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.6));
}

/* Zoom hover effect */
.slide-image {
    transition: transform 0.5s ease;
}
.slide:hover .slide-image {
    transform: scale(1.05);
}

/* SLIDE CONTENT BEAUTIFICATION */
.slide-content {
    background: #ffffff;
    padding: 18px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

.slide:hover .slide-content {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

/* Title styling */
.slide-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #003b80;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Desc text */
.slide-desc {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.45;
    margin-bottom: 12px;
}

/* Read more link */
.slide-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1578be;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.slide-link:hover {
    color: #0a56a1;
    transform: translateX(4px);
}

.slide-link i {
    transition: transform 0.3s ease;
}
.slide-link:hover i {
    transform: translateX(3px);
}

/* BADGE */
.slide-badge {
    background: #1578be;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* NAVIGATION ARROWS BEAUTIFICATION */
.slider-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    backdrop-filter: blur(6px);
    color: #1578be;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.slider-nav:hover {
    background: #1578be;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(21,120,190,0.35);
}

/* Prev / Next position */
.slider-nav.prev {
    left: 12px;
}
.slider-nav.next {
    right: 12px;
}

/* Indicator dots */
.indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #1578be;
    transform: scale(1.3);
}
/* SLIDE CONTENT – blended background + soft glow */
.slide-content {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 45%, #fdecec 100%);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}

/* subtle light pattern overlay */
.slide-content::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 0% 0%, rgba(21,120,190,0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(212,0,0,0.12), transparent 55%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

/* keep text above the blend */
.slide-content > * {
    position: relative;
    z-index: 1;
}

.slide:hover .slide-content {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

/* title & text stay readable on the blend */
.slide-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #05315b;
    margin-bottom: 8px;
}

.slide-desc {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* link */
.slide-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1578be;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.slide-link:hover {
    color: #0a56a1;
    transform: translateX(4px);
}
.slide-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.slide-link:hover i {
    transform: translateX(3px);
}

/* ARROWS – red, blue, black gradient */
.slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;

    background: linear-gradient(135deg, #d40000, #0051a8, #000000);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.28s ease;
}

.slider-nav i {
    font-size: 0.95rem;
}

.slider-nav.prev {
    left: 12px;
}

.slider-nav.next {
    right: 12px;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    filter: brightness(1.05);
}

/* active indicator tweak to match brand */
.indicator.active {
    background: linear-gradient(135deg, #d40000, #0051a8, #000000);
    transform: scale(1.25);
}
/* Base slide styles for fade transition */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Active slide becomes visible */
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Remove sliding movement */
.slide.prev, .slide.next {
    transform: none !important;

}
/* Optional: ensure toggler icon shows (pick one: navbar-dark or navbar-light) */
/* ===== Mobile "offcanvas-like" behavior using the SAME #navbarNav ===== */
@media (max-width: 991.98px){

  /* ========== Drawer shell (same as before) ========== */
  .navbar-expand-lg .navbar-collapse,
  .navbar-expand-lg .navbar-collapse.collapse,
  .navbar-expand-lg .navbar-collapse.collapsing,
  .navbar-expand-lg .navbar-collapse.show{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: min(88vw, 360px) !important;
    max-width: 360px !important;

    background: #fff !important;      /* mobile background white */
    z-index: 1055 !important;

    /* IMPORTANT: increase top padding to create space for header/logo */
    padding: 92px 18px 18px !important;
    box-shadow: -12px 0 30px rgba(0,0,0,.28) !important;

    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-expand-lg .navbar-collapse.collapse:not(.show){
    display: block !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .navbar-expand-lg .navbar-collapse.show{
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: transform .28s ease !important;
  }

  .navbar-expand-lg .navbar-collapse.collapsing{
    height: 100vh !important;
    transition: none !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
  }

  /* ========== Drawer header with logo (no HTML change) ========== */
  .navbar-expand-lg .navbar-collapse::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;
    background: #fff; /* header background */
    border-bottom: 1px solid rgba(0,0,0,.08);

    /* Logo image */
    background-image: url("YOUR_LOGO_URL_HERE");
    background-repeat: no-repeat;
    background-position: 18px center;
    background-size: 150px auto; /* adjust logo size */
  }

  /* Optional: small “Menu” label on the right */
  .navbar-expand-lg .navbar-collapse::after{
    content: "Menu";
    position: absolute;
    top: 26px;
    right: 18px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
  }

  /* ========== Vertical list layout ========== */
  .navbar-expand-lg .navbar-nav{
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .navbar-expand-lg .nav-item,
  .navbar-expand-lg .nav-link{
    width: 100%;
  }

  /* ========== Icon + spacing for links ========== */
  .navbar-expand-lg .nav-link{
    position: relative;
    padding: 12px 12px 12px 44px;  /* left padding for icon */
    border-radius: 10px;
  }

  /* default icon (for any link) */
  .navbar-expand-lg .nav-link::before{
    content: "•";                  /* fallback if you don't want emoji */
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    opacity: .75;
  }

  /* Specific icons per item (edit/extend as you like) */
  .navbar-expand-lg .nav-link[href="/"]::before{
    content: "🏠";
  }

  /* Dropdown toggles: About / Media */
  .navbar-expand-lg .nav-item.dropdown > .nav-link::before{
    content: "📌";
  }
  /* If you want different ones per dropdown id: */
  .navbar-expand-lg #aboutDropdown::before{ content: "ℹ️"; }
  .navbar-expand-lg #mediaDropdown::before{ content: "🖼️"; }

  /* Inline dropdowns in drawer */
  .navbar-expand-lg .dropdown-menu{
    position: static !important;
    transform: none !important;
    float: none !important;
    width: 100% !important;

    border: 0 !important;
    padding: 6px 0 10px !important;
    margin: 6px 0 10px !important;
  }

  /* Dropdown items also get icons */
  .navbar-expand-lg .dropdown-item{
    position: relative;
    padding-left: 44px;
  }
  .navbar-expand-lg .dropdown-item::before{
    content: "→";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .65;
  }

  /* Little divider feel between groups (optional) */
  .navbar-expand-lg .nav-item + .nav-item{
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .navbar-expand-lg .nav-item{
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.nav-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1050;
}
.nav-drawer-overlay.show{
  opacity: 1;
  pointer-events: auto;
}
body.nav-drawer-open{
  overflow: hidden;
}
@media (max-width: 991.98px){
  .mobile-drawer-header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;
    background: #fff;                 /* you wanted white on mobile */
    border-bottom: 1px solid rgba(0,0,0,.08);
    z-index: 2;
  }

  .mobile-drawer-logo{
    height: 46px;
    width: auto;
    object-fit: contain;
  }

  .mobile-drawer-close{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
}
.navbar-nav > .nav-item:not(:last-child) {
    position: relative;
    margin-right: 0px !important;
    padding-right: 5px !important;
}
/* ===========================
   KLMIS Entry Points (Premium)
   Colors: Blue #1578be | Red #d40000 | Black #000
   =========================== */

.klmis-entrypoints{
  position: relative;
  background: #fff;
}

.klmis-entrypoints::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(21,120,190,.10), transparent 55%),
    radial-gradient(circle at 92% 78%, rgba(212,0,0,.08), transparent 55%);
  pointer-events:none;
}

.entry-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #000;
  font-size: clamp(1.55rem, 1.1rem + 1vw, 2.1rem);
}

.entry-sub{
  color: rgba(0,0,0,.68);
  max-width: 72ch;
}

.entry-btn-soft{
  border-radius: 999px;
  background: rgba(21,120,190,.10);
  border: 1px solid rgba(21,120,190,.20);
  color: #000;
  font-weight: 800;
  padding: .6rem 1.05rem;
  transition: all .25s ease;
}
.entry-btn-soft:hover{
  background: rgba(21,120,190,.16);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
}

/* Card */
.entry-card{
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* subtle corner accent */
.entry-card::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at center, rgba(21,120,190,.18), transparent 62%);
  transform: rotate(12deg);
  pointer-events:none;
}
.entry-card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1578be, #d40000, #000);
  opacity: .95;
}

.entry-card:hover{
  transform: translateY(-5px);
  border-color: rgba(21,120,190,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* Featured card */
.entry-card-featured{
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.entry-card-featured::before{
  background: radial-gradient(circle at center, rgba(212,0,0,.15), transparent 62%);
}

/* top layout */
.entry-card-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

/* icon */
.entry-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(0,0,0,.10);
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.entry-icon i{ font-size: 1.25rem; }

/* icon variants */
.entry-icon-blue{
  background: rgba(21,120,190,.12);
  color: #1578be;
}
.entry-icon-red{
  background: rgba(212,0,0,.10);
  color: #d40000;
}
.entry-icon-gradient{
  background: linear-gradient(135deg, rgba(21,120,190,.18), rgba(212,0,0,.12));
  color: #000;
}

/* meta area */
.entry-meta{ flex: 1; min-width: 0; }
.entry-tags{ display:flex; flex-wrap:wrap; gap: 4px; margin-top: 8px; }

/* chip */
.entry-chip{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  white-space: nowrap;
}
.entry-chip-blue{
  background: rgba(21,120,190,.10);
  color: #000;
  border-color: rgba(21,120,190,.20);
}
.entry-chip-red{
  background: rgba(212,0,0,.08);
  color: #000;
  border-color: rgba(212,0,0,.18);
}
.entry-chip-gradient{
  background: linear-gradient(135deg, rgba(21,120,190,.12), rgba(212,0,0,.10));
  color: #000;
}

/* pills */
.entry-pill{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: .32rem .7rem;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(0,0,0,.85);
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
}
.entry-pill i{ opacity: .85; font-size: .9rem; }

/* title + body */
.entry-h{
  font-weight: 900;
  color: #000;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.entry-p{
  color: rgba(0,0,0,.70);
  line-height: 1.55;
  font-size: .93rem;
}

/* relevant */
.entry-relevant{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px dashed rgba(0,0,0,.14);
  color: rgba(0,0,0,.62);
  font-size: .82rem;
}
.entry-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: linear-gradient(135deg, #1578be, #d40000, #000);
  flex: 0 0 auto;
}

/* buttons */


/* ===============================
   PERFECT ALIGNMENT (ALL CARDS)
   =============================== */

/* Make the top area a fixed grid: icon + content */
.entry-card-top{
  display: grid !important;
  grid-template-columns: 58px 1fr;  /* icon | meta */
  gap: 12px;
  align-items: start;
}

/* Force chip row and tag row to always occupy consistent space */
.entry-meta{
  display: grid;
  grid-template-rows: 34px 42px;   /* chip row height | tags row height */
  row-gap: 3px;
}

/* chip row locked */
.entry-chip-row{
  height: 34px;
  display: flex;
  align-items: center;
}

/* tags row locked */
.entry-tags{
  height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-content: center; /* IMPORTANT: centers wraps inside fixed height */
  gap: 8px;
  overflow: hidden;      /* prevents random growth */
}

/* keep pills consistent */
.entry-pill{
  white-space: nowrap;
  line-height: 1.15;
}

/* On small screens allow the tags area to expand naturally */
@media (max-width: 575.98px){
  .entry-meta{ grid-template-rows: auto auto; }
  .entry-tags{ height: auto; overflow: visible; }
}
/* Equal-height cards and pinned button */
.entry-card-eq{
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Button always sits at bottom */
.entry-btn-pin{
  margin-top: auto !important;
}

/* Make the top block consistent across all cards */
.entry-top-eq{
  display: grid !important;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
}

/* Lock tags area to align neatly */
.entry-tags-eq{
  min-height: 48px;            /* consistent space */
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}

/* Prevent pills from expanding weirdly */
.entry-tags-eq .entry-pill{
  white-space: nowrap;
}

.entry-btn-pin{
  margin-top: auto !important;
}

</style>

    <style type="text/css">
        /* =========================================================
   KLMIS Entry Modals – Strong override (uses your variables)
   Make sure this CSS loads AFTER bootstrap
========================================================= */

/* Backdrop tint so the popup feels premium */


/* Ensure our modal content styles win */
.modal .entry-modal-content{
  background: linear-gradient(180deg, #ffffff, var(--light-gray)) !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.22) !important;
}

/* Header: gradient + subtle pattern */
.modal .entry-modal-header{
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(21,120,190,.22), transparent 55%),
    radial-gradient(900px 260px at 88% 0%, rgba(217,83,79,.18), transparent 55%),
    linear-gradient(135deg, rgba(21,120,190,.12), rgba(217,83,79,.08), #ffffff) !important;
  border-bottom: 1px solid rgba(33,37,41,.10) !important;
  padding: 16px 18px !important;
}

/* Title + subtitle */
.modal .entry-modal-header .modal-title{
  color: var(--secondary-blue) !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
}

.modal .entry-modal-muted{
  color: rgba(33,37,41,.70) !important;
}

/* Close button visibility on light header */
.modal .btn-close.btn-close-white{
  filter: invert(1) grayscale(100%) brightness(35%) !important; /* makes it dark */
  opacity: .75 !important;
}
.modal .btn-close.btn-close-white:hover{
  opacity: 1 !important;
}

/* Hint box */
.modal .entry-modal-hint{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(21,120,190,.07) !important;
  border: 1px solid rgba(21,120,190,.18) !important;
  color: rgba(33,37,41,.82) !important;
  line-height: 1.45;
}

/* Hint icon */
.modal .entry-modal-hint i{
  color: var(--primary-blue) !important;
  margin-top: 2px;
}

/* List wrapper spacing */
.modal .entry-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* Override Bootstrap list-group-item default white */
.modal .entry-item.list-group-item{
  border-radius: 16px !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(33,37,41,.06) !important;
  padding: 14px 14px !important;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.modal .entry-item.list-group-item:hover{
  transform: translateY(-2px);
  border-color: rgba(21,120,190,.28) !important;
  box-shadow: 0 18px 42px rgba(33,37,41,.10) !important;
}

/* Title + description inside item */
.modal .entry-item-title{
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

.modal .entry-item-desc{
  color: rgba(33,37,41,.72) !important;
  font-size: .90rem;
}

/* Add a subtle left accent bar to each item */
.modal .entry-item{
  position: relative;
  overflow: hidden;
}

.modal .entry-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-red));
  opacity: .85;
}

/* Footer */
.modal .entry-modal-footer{
  background: var(--light-gray) !important;
  border-top: 1px solid rgba(33,37,41,.10) !important;
  padding: 14px 18px 18px !important;
}

/* Buttons */
.modal .entry-btn-primary-2{
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 30px rgba(21,120,190,.18);
}
.modal .entry-btn-primary-2:hover{ filter: brightness(1.05); }

.modal .entry-btn-soft-2{
  background: #fff !important;
  border: 1px solid rgba(33,37,41,.14) !important;
  color: rgba(33,37,41,.85) !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
}
.modal .entry-btn-soft-2:hover{
  background: rgba(33,37,41,.04) !important;
}

/* Mobile padding */
@media (max-width: 575.98px){
  .modal .entry-modal-header,
  .modal .modal-body,
  .modal .entry-modal-footer{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
/* Base */
.btn.entry-btn{
  border-radius: 14px !important;
  border: 1px solid rgba(21,120,190,.28) !important;
  background: rgba(21,120,190,.08) !important;
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  padding: .72rem .95rem !important;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease !important;
  text-decoration: none !important;
}

/* Soft hover */
.btn.entry-btn:hover,
.btn.entry-btn:focus{
  background: rgba(21,120,190,.14) !important;
  border-color: rgba(21,120,190,.45) !important;
  color: var(--secondary-blue) !important;
  box-shadow: 0 6px 14px rgba(21,120,190,.15); /* soft glow, not jump */
}

/* Active */
.btn.entry-btn:active{
  box-shadow: 0 3px 8px rgba(21,120,190,.12);
}


/* ===== Featured Primary Button ===== */
.btn.entry-btn-primary{
  border-radius: 14px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: .75rem .95rem !important;
  transition: box-shadow .25s ease, filter .25s ease !important;
  text-decoration: none !important;
}

/* Elegant glow instead of lift */
.btn.entry-btn-primary:hover,
.btn.entry-btn-primary:focus{
  filter: brightness(1.06);
  box-shadow:
    0 8px 18px rgba(21,120,190,.28),
    0 2px 8px rgba(217,83,79,.18);
}

/* Active */
.btn.entry-btn-primary:active{
  box-shadow:
    0 5px 12px rgba(21,120,190,.22),
    0 2px 6px rgba(217,83,79,.14);
}

    </style>
    <style>
  /* =========================
   CAREER NAVIGATOR CTA
========================= */
.career-cta {
  background:
    radial-gradient(1000px 500px at 8% 12%, rgba(13,110,253,.22), transparent 55%),
    radial-gradient(800px 450px at 85% 28%, rgba(32,201,151,.15), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f1a33 100%);
  color: #e9eefc;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 0H160V160H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.cta-wrap {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

/* Small top accent line */
.cta-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 2px;
}

.cta-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(233,238,252,.9);
  opacity: .85;
}

.cta-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(233,238,252,.88);
  max-width: 52ch;
}

.cta-sub {
  color: rgba(233,238,252,.72);
  font-size: .95rem;
}

/* Match site buttons, just refine spacing */
.cta-btn {
  border-radius: 14px;
  padding: .9rem 1.2rem;
  font-weight: 700;
  transition: all .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

/* Keep harmony with your existing outline buttons */
.btn-outline-light {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cta-note {
  color: rgba(233,238,252,.70);
  font-size: .85rem;
}


/* =========================
   LATEST INSIGHTS SECTION
========================= */
.latest-insights {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f3a;
}

.section-sub {
  color: #5b667a;
  max-width: 60ch;
}

.link-more {
  text-decoration: none;
  font-weight: 700;
  color: #0d6efd;
}

.link-more:hover {
  text-decoration: underline;
}


/* =========================
   PANELS
========================= */
.insights-panel {
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16,24,40,.06);
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.insights-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16,24,40,.08);
}

.panel-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.panel-badge {
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  font-weight: 800;
  padding: .45rem .75rem;
  border-radius: 999px;
}

.panel-badge.alt {
  background: rgba(32,201,151,.14);
  color: #198754;
}


/* =========================
   INSIGHT ITEMS
========================= */
.insight-item .insight-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .4rem;
}

.insight-pill {
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
}

.insight-date {
  font-size: .8rem;
  color: #6c757d;
  font-weight: 600;
}

.insight-title {
  font-weight: 800;
  margin-bottom: .35rem;
  color: #0b1f3a;
}

.insight-desc {
  color: #5b667a;
  margin-bottom: .6rem;
  max-width: 60ch;
}

.insight-link {
  text-decoration: none;
  font-weight: 800;
  color: #0d6efd;
}

.insight-link:hover {
  text-decoration: underline;
}

.insight-divider {
  opacity: .08;
  margin: 1.15rem 0;
}


/* =========================
   RECENT REPORTS (SWEET STYLE)
   Uses your theme colors:
   --primary-blue: #1578be
   --secondary-blue: #04407c
   --accent-red: #d9534f
   --dark-black: #212529
   --light-gray: #f8f9fa
========================= */

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(21,120,190,0.12);
  box-shadow: 0 10px 28px rgba(33,37,41,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,120,190,0.30);
  box-shadow: 0 18px 45px rgba(33,37,41,0.10);
}

/* Cover container */
.report-cover-container {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light-gray), #ffffff);
  border: 1px solid rgba(21,120,190,0.15);
}

/* Image */
.report-cover-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:hover .report-cover-image {
  transform: scale(1.03);
}

/* Default cover */
.default-cover {
  height: 180px;
  background: linear-gradient(135deg, rgba(21,120,190,0.10), rgba(4,64,124,0.08));
  color: var(--secondary-blue);
}

/* Details */
.report-details {
  padding-top: 10px;
}

.report-title {
  font-weight: 800;
  color: var(--secondary-blue);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
}

/* Year badge */
.year-badge {
  background: rgba(21,120,190,0.12);
  color: var(--primary-blue);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Download button */
.btn-download {
  background: transparent;
  border: 1px solid rgba(21,120,190,0.35);
  color: var(--secondary-blue);
  font-weight: 700;
  border-radius: 10px;
  padding: 6px 14px;
  transition: all 0.25s ease;
}

.btn-download:hover {
  background: rgba(21,120,190,0.12);
  border-color: var(--primary-blue);
  color: var(--secondary-blue);
}

/* Section heading */
.section-title {
  font-weight: 900;
  color: var(--secondary-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* View all button */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 28px;
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
}
/* ── Variables ── */
.klmis-footer {
  --kf-bg:       #0b1e35;          /* deep navy — echoes the hero blue */
  --kf-surface:  #0e2540;          /* slightly lighter navy for cards/inputs */
  --kf-border:   rgba(255,255,255,0.09);
  --kf-red:      #d40000;
  --kf-blue:     #3a9de0;          /* lighter blue so it pops on dark navy */
  --kf-text:     #cce0f5;          /* cool blue-white, matches the hero text feel */
  --kf-muted:    #6a90b5;          /* muted steel blue instead of grey */
  --kf-white:    #eef5fc;
  --kf-font-d:   'Playfair Display', Georgia, serif;
  --kf-font-b:   'DM Sans', sans-serif;

  background: var(--kf-bg);
  color: var(--kf-text);
  font-family: var(--kf-font-b);
  padding: 0 0 0;
  position: relative;
}

/* ── Gradient bridge — softens transition from sections above ── */
.klmis-footer::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #d40000 0%, #1578be 50%, #0b1e35 100%);
}

/* ── Top colour bar ── */
.kf-topbar {
  display: flex;
  height: 4px;
  width: 100%;
}
.kf-topbar-line { flex: 1; }
.kf-line-red  { background: var(--kf-red); }
.kf-line-blue { background: #1578be; }

/* ── Main grid ── */
.kf-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1.2fr 1.4fr;
  gap: 2.5rem 3rem;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--kf-border);
}

@media (max-width: 1199px) {
  .kf-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 575px) {
  .kf-grid { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem 0 1.5rem; }
}

/* ── Brand col ── */
.kf-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.kf-brand-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--kf-red), var(--kf-blue));
  display: grid;
  place-items: center;
  font-family: var(--kf-font-d);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.kf-brand-name {
  font-family: var(--kf-font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kf-white);
  line-height: 1.3;
}

.kf-brand-sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kf-muted);
  margin-top: 2px;
}

.kf-brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kf-muted);
  margin-bottom: 1.25rem;
}

/* ── Social icons ── */
.kf-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.kf-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--kf-border);
  background: var(--kf-surface);
  color: var(--kf-muted);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.kf-social:hover {
  background: #1578be;
  border-color: #1578be;
  color: #fff;
  transform: translateY(-3px);
}

/* ── Column titles ── */
.kf-col-title {
  font-family: var(--kf-font-b);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kf-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kf-title-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kf-red);
  flex-shrink: 0;
}

/* ── Links ── */
.kf-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.kf-links a {
  font-size: 0.95rem;
  color: var(--kf-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kf-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--kf-blue);
  transition: width 0.25s;
  flex-shrink: 0;
}

.kf-links a:hover {
  color: var(--kf-white);
  padding-left: 4px;
}

.kf-links a:hover::before {
  width: 12px;
}

/* ── Partners ── */
.kf-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.kf-partner-logo {
  display: block;
  background: var(--kf-surface);
  border: 1px solid var(--kf-border);
  border-radius: 6px;
  padding: 5px 8px;
  transition: border-color 0.2s, background 0.2s;
}

.kf-partner-logo:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.kf-partner-logo img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.kf-partner-logo:hover img {
  opacity: 0.85;
}

/* ── Newsletter ── */
.kf-newsletter-desc {
  font-size: 0.95rem;
  color: var(--kf-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.kf-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kf-newsletter-field {
  position: relative;
  display: flex;
  align-items: center;
}

.kf-field-icon {
  position: absolute;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--kf-muted);
  pointer-events: none;
}

.kf-newsletter-field input {
  width: 100%;
  background: var(--kf-surface);
  border: 1px solid var(--kf-border);
  border-radius: 6px;
  padding: 0.6rem 0.75rem 0.6rem 2.2rem;
  font-family: var(--kf-font-b);
  font-size: 0.95rem;
  color: var(--kf-white);
  outline: none;
  transition: border-color 0.2s;
}

.kf-newsletter-field input::placeholder { color: var(--kf-muted); }
.kf-newsletter-field input:focus { border-color: var(--kf-blue); }

.kf-newsletter-btn {
  background: linear-gradient(90deg, var(--kf-red), var(--kf-blue));
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-family: var(--kf-font-b);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}

.kf-newsletter-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Mini stat strip ── */
.kf-stat-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.25rem;
  background: var(--kf-surface);
  border: 1px solid var(--kf-border);
  border-radius: 8px;
  overflow: hidden;
}

.kf-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0.4rem;
  gap: 2px;
}

.kf-stat-n {
  font-family: var(--kf-font-d);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kf-white);
  line-height: 1;
}

.kf-stat-l {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kf-muted);
}

.kf-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--kf-border);
  flex-shrink: 0;
}

/* ── Bottom bar ── */
.kf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.9rem;
  color: var(--kf-muted);
}

.kf-powered a {
  color: var(--kf-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.kf-powered a:hover { color: var(--kf-white); }

/* ── Newsletter feedback message ── */
.kf-newsletter-msg {
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  margin-top: 0.25rem;
  font-family: var(--kf-font-b);
  animation: kfFadeIn 0.3s ease;
}

.kf-newsletter-msg.msg-success {
  background: rgba(35, 134, 54, 0.15);
  border: 1px solid rgba(35, 134, 54, 0.35);
  color: #3fb950;
}

.kf-newsletter-msg.msg-already {
  background: rgba(21, 120, 190, 0.12);
  border: 1px solid rgba(21, 120, 190, 0.3);
  color: #58a6ff;
}

.kf-newsletter-msg.msg-error {
  background: rgba(212, 0, 0, 0.12);
  border: 1px solid rgba(212, 0, 0, 0.3);
  color: #ff7b72;
}

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

/* Spinner alignment */
.kf-btn-spinner { display: inline-flex; align-items: center; }
