/* Hero Section */
.hero {
    background: 
        /* reduced blue film intensity so background image shows more */
        linear-gradient(135deg, rgba(30, 64, 175, 0.60), rgba(15, 23, 42, 0.85)),
  url('../images/hero-bg.jpeg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px; /* Height of navbar */
}

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


/* Load background image after critical content */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: url('../images/hero-bg.jpeg') center/cover no-repeat;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
    filter: blur(0px);
}

.hero.loaded .hero-bg {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Adjusted for mobile */
    font-weight: 700;
    margin-bottom: 1rem; /* Reduced spacing */
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1rem; /* Smaller on mobile */
    max-width: 700px;
    margin: 0 auto 1.5rem; /* Reduced spacing */
    color: rgba(255, 255, 255, 0.9);
}



@media (max-width: 768px) {
    .hero {
        min-height: 75vh; /* Smaller height on mobile */
        background-position: center 30%; /* Adjust background position */
    	margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

    .cta-button {
      display: inline-block;
      background: linear-gradient(to right, var(--accent), #d946ef);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
      transition: all 0.3s ease;
      margin-bottom: 2rem;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
    }

    /* Counter Section */
    .counter-container {
      margin: 2rem 0;
      position: relative;
    }

    .counter {
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(to right, #fff, #e2e8f0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      margin-right: 0.5rem;
    }

    .counter-text {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Scroll Arrow */
    .scroll-arrow {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 2rem;
      animation: bounce 2s infinite;
      cursor: pointer;
      z-index: 10;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
      }
      40% {
        transform: translateY(-20px) translateX(-50%);
      }
      60% {
        transform: translateY(-10px) translateX(-50%);
      }
    }
    
    /* Visitor Counter Styles */
    .visitor-counter {
      background: rgba(15, 23, 42, 0.8);
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .visitor-counter .counter-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 5px;
    }
    
    .visitor-counter .counter-value {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--prem-gold-light);
      font-family: 'Poppins', sans-serif;
    }
    
    .visitor-counter i {
      color: var(--prem-gold);
      margin-right: 8px;
    }
    
    /* Enhanced Mission/Vision Cards */
    .mission-card, .vision-card {
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      perspective: 1000px;
      transform-style: preserve-3d;
    }
    
    .mission-card:hover {
      transform: translateY(-10px) rotateX(5deg);
      box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3) !important;
    }
    
    .vision-card:hover {
      transform: translateY(-10px) rotateX(-5deg);
      box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3) !important;
    }
    
    .card-icon {
      transition: transform 0.5s ease;
    }
    
    .mission-card:hover .card-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .vision-card:hover .card-icon {
      transform: scale(1.1) rotate(-5deg);
    }

/* Fix for navbar mobile view */
.navbar {
    will-change: transform; /* Optimize for performance */
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(30, 20, 50, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        padding-top: 0.5rem;
    }
    
    .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu {
        background: rgba(40, 30, 70, 0.95);
        margin-left: 1rem;
        margin-top: 0.5rem;
    }
}

/* Prevent horizontal overflow on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    position: relative;
}

        /* Hero glitter implemented with small SVG stars (spiky shapes) */
        .hero-glitter {
            position: absolute;
            inset: 0;
            z-index: 1; /* behind hero .container which uses z-index:2 */
            pointer-events: none;
            overflow: hidden;
        }

        /* SVG star container styling */
        .hero-glitter svg.star {
            position: absolute;
            width: auto;
            height: auto;
            will-change: opacity, transform;
            opacity: 0;
            transform-origin: center center;
            filter: drop-shadow(0 0 8px rgba(255,215,64,0.06));
        }

        @keyframes hero-twinkle {
            0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
            50% { opacity: 1; transform: scale(1) rotate(7deg); }
        }

        /* Reduce motion: avoid animations when user prefers reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-glitter svg.star { animation: none !important; opacity: 0 !important; }
        }

        /* Make Learn More button more dynamic inside hero */
        .hero .btn-primary {
            transition: transform 220ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease, background-color 220ms ease;
            position: relative;
            overflow: visible;
        }

        .hero .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(59,130,246,0.18), 0 6px 18px rgba(99,102,241,0.08) inset;
        }

        .hero .btn-primary:active {
            transform: translateY(-1px) scale(0.995);
        }

        /* subtle animated glow behind the icon */
        .hero .btn-primary i.fas { transition: transform 220ms ease; }
        .hero .btn-primary:hover i.fas { transform: translateX(4px) rotate(-8deg); }


        /* Impact Section Styles */
.impact-section {
  background: linear-gradient(135deg, #0a1120 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23161b33" width="100" height="100"/><path fill="%23121a2f" d="M0,0L100,100"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 25px 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--prem-gold), var(--prem-gold-dark));
  color: #0F172A;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--prem-gold-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0;
}

.program-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.program-header {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(15, 23, 42, 0.5));
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--prem-gold);
  color: #0F172A;
  font-size: 1.2rem;
  margin-right: 15px;
}

.program-header h3 {
  color: white;
  margin-bottom: 0;
  font-size: 1.4rem;
}

.program-body {
  padding: 20px;
}

.program-body p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.program-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.program-body li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.program-body li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--prem-gold);
}

.areas-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 3px solid var(--prem-gold);
}

.area-item h4 {
  color: var(--prem-gold-light);
  margin-bottom: 10px;
}

.area-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
  
  .program-header {
    flex-direction: column;
    text-align: center;
  }
  
  .program-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .area-item {
    margin-bottom: 20px;
  }
}

/* Enhanced Hero Section Styles */
.hero {
    background: 
        linear-gradient(135deg, rgba(18, 15, 180, 0.496), rgba(15, 23, 42, 0.90)),
        url('../images/hero-bg.jpeg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-title .welcome-text {
    font-size: 0.75em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.65rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.hero-title .foundation-text {
    font-size: 1.2em;
    font-weight: 650;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #a1ee87, #83e057);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-top: 0.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--prem-gold), var(--prem-gold-light));
    border-radius: 2px;
}


.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 1.05rem;
    min-width: 180px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--prem-gold-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: -5.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scroll-down-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-duration: 20s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: 5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        margin-top: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    

    
    .hero-title .welcome-text {
        font-size: 0.7em;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title .foundation-text {
        font-size: 1.1em;
        margin-top: 0.3rem;
    }
    
    .hero-title::after {
        bottom: -10px;
        width: 80px;
        height: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .scroll-down-arrow {
        bottom: -3.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Mobile First Approach - Base styles for mobile */
.hero-title {
    font-size: 1.8rem;
    margin-top: 1rem;
}

.hero-subtitle {
    font-size: 0.9rem;
}

.stat-item {
    min-width: 70px;
}

.stat-number {
    font-size: 1.2rem;
}

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

.hero-title .welcome-text {
    font-size: 0.6em;
}

.hero-title .foundation-text {
    font-size: 0.9em;
}

.hero-title::after {
    width: 50px;
    bottom: -6px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-title .welcome-text {
        font-size: 0.65em;
    }
    
    .hero-title .foundation-text {
        font-size: 1em;
    }
    
    .hero-title::after {
        width: 60px;
        bottom: -8px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Fix for content going behind navbar */
@media (max-width: 991.98px) {
    body {
        padding-top: 5px; /* Adjust based on your navbar height */
    }
}

/* Specific fix for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
}

/* High-resolution mobile devices */
@media (max-width: 767.98px) and (min-resolution: 2dppx) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
}

/* Orientation specific adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-title {
        font-size: 1.6rem;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
}

    
        /* Hero Stats with Plus Sign */
        .hero-stats {
          display: flex;
          justify-content: center;
          gap: 2rem;
          margin-top: 2rem;
          flex-wrap: wrap;
        }

        .stat-item {
          text-align: center;
          padding: 0.5rem 1rem;
          background: rgba(255, 255, 255, 0.08);
          border-radius: 10px;
          backdrop-filter: blur(5px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          min-width: 120px;
          position: relative;
        }

        .stat-number {
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--prem-gold-light);
          display: inline;
          line-height: 1;
        }

        .stat-plus {
          font-size: 1.4rem;
          font-weight: 700;
          color: var(--prem-gold-light);
          display: inline;
          margin-left: 2px;
          vertical-align: top;
        }

        .stat-label {
          font-size: 0.85rem;
          color: rgba(255, 255, 255, 0.8);
          margin-top: 5px;
          display: block;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
          .hero-stats {
            gap: 1rem;
          }

          .stat-item {
            min-width: 100px;
            padding: 0.5rem;
          }

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

          .stat-plus {
            font-size: 1.1rem;
          }
        }

        /* Small devices */
        @media (max-width: 576px) {
          .stat-number {
            font-size: 1.2rem;
          }

          .stat-plus {
            font-size: 1rem;
          }

          .stat-item {
            min-width: 70px;
          }
        }
    

