    #banner-img{
        width:100%;
        height:40vh;
        object-fit:cover;
        object-position:center center;
    }

  .blink
{
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 20px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* Hide fusionChart Trial Water mark */
[pointer-events="bounding-box"] {
    display: none
}

    .dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    }
    
    .dashboard-header {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .drill-link {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 15px;
        background: #2a5298;
        color: white;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .drill-link:hover {
        background: #1e3c72;
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }
    
    .card-title {
        color: #2a5298;
        font-weight: 600;
        margin-bottom: 15px;
    }
.form-select {
    width: auto;
    display: inline-block;
    }

    @media (max-width: 992px) {
    .dashboard-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    }


        
        :root {
            --card-border-radius: 12px;
            --card-padding: 1.5rem;
            --transition-speed: 0.3s;
        }
        
        body {
            background-color: #f8f9fa;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .dashboard-card {
            border-radius: var(--card-border-radius);
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-speed) ease;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            transition: all var(--transition-speed) ease;
        }
        
        .dashboard-card:hover .icon-container {
            transform: scale(1.1);
        }
        
        .card-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .card-detail {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        
        .progress-container {
            margin-top: 10px;
            background: #eef2f7;
            border-radius: 10px;
            height: 8px;
        }
        
        .progress-bar {
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }
        
        .gender-stats {
            display: flex;
            margin-top: 10px;
        }
        
        .gender-badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            background: #f1f5f9;
        }
        
        .boys-badge {
            background: rgba(52, 152, 219, 0.15);
            color: #2980b9;
        }
        
        .girls-badge {
            background: rgba(231, 76, 60, 0.15);
            color: #c0392b;
        }
        
        .subject-progress {
            margin-top: 15px;
        }
        
        .subject-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
        
        .spinner-container {
            position: absolute;
            top: 15px;
            right: 15px;
        }
        
        /* Card specific styles */
        .students-card .icon-container {
            background: linear-gradient(45deg, #3498db, #2980b9);
        }
        
        .progression-card .icon-container {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
        }
        
        .proficiency-card .icon-container {
            background: linear-gradient(45deg, #2ecc71, #27ae60);
        }
        
        @media (max-width: 768px) {
            .icon-container {
                width: 60px;
                height: 60px;
            }
            
            .icon-container i {
                font-size: 1.5rem !important;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
        }
   