 /* About page specific styles */
 .about-hero {
     padding: 120px 0 30px;
     background: linear-gradient(135deg, var(--light) 0%, rgba(108, 99, 255, 0.05) 100%);
 }

 .about-hero h1 {
     font-size: 2rem;
     background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .mission-section {
     padding: 50px 0;
     background: white;
 }

 .team-section {
     padding: 50px 0;
     background: rgba(108, 99, 255, 0.05);
 }

 .text-center h2 {
     font-size: 2rem;
 }

 .text-center p.lead {
     font-size: 1rem;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }

 .value-card {
     background: white;
     padding: 40px 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
 }

 .value-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
 }

 .value-card h4 {
     font-size: 1rem;
 }

 .value-card p {
     font-size: 0.8rem;
 }

 .value-icon {
     width: 50px;
     height: 50px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 1.5rem;
     color: white;
 }


 /* Statistics Section Styles */
 .statistics-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 60px 0;
     position: relative;
     overflow: hidden;
 }

 .statistics-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('assets/images/pattern.png');
     opacity: 0.1;
     animation: slideBackground 20s linear infinite;
 }

 @keyframes slideBackground {
     from {
         background-position: 0 0;
     }

     to {
         background-position: 100% 100%;
     }
 }

 .statistics-header {
     text-align: center;
     margin-bottom: 40px;
     position: relative;
     z-index: 1;
 }

 .statistics-header h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     font-family: 'Montserrat', sans-serif;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
 }

 .statistics-header p {
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
     opacity: 0.95;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     position: relative;
     z-index: 1;
     margin-bottom: 40px;
 }

 .stat-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 30px 20px;
     text-align: center;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.2);
     position: relative;
     overflow: hidden;
 }

 .stat-card::after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .stat-card:hover::after {
     opacity: 1;
 }

 .stat-card:hover {
     transform: translateY(-10px) scale(1.02);
     background: rgba(255, 255, 255, 0.15);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     border-color: rgba(255, 215, 0, 0.3);
 }

 .stat-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #FFD700;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }

 .stat-number {
     font-size: 2.8rem;
     font-weight: 800;
     font-family: 'Montserrat', sans-serif;
     margin-bottom: 10px;
     line-height: 1;
     color: #FFD700;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .stat-label {
     font-size: 1.1rem;
     opacity: 0.95;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .stat-description {
     font-size: 0.9rem;
     opacity: 0.8;
     margin: 0;
 }

 /* Achievement Badges */
 .achievement-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: #FFD700;
     color: #333;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     animation: badgePulse 3s infinite;
     box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
 }

 @keyframes badgePulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 /* Real-time indicator */
 .real-time-indicator {
     display: inline-block;
     width: 12px;
     height: 12px;
     background: #4CAF50;
     border-radius: 50%;
     margin-right: 8px;
     animation: blink 2s infinite;
     box-shadow: 0 0 10px #4CAF50;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 /* Live Stats Card */
 .live-stats-card {
     background: rgba(0, 0, 0, 0.2);
     border-radius: 15px;
     padding: 25px;
     border: 1px solid rgba(255, 255, 255, 0.15);
 }

 .live-stat-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .live-stat-item:last-child {
     border-bottom: none;
 }

 .live-stat-label {
     font-size: 0.95rem;
     opacity: 0.9;
 }

 .live-stat-value {
     font-weight: 700;
     color: #FFD700;
 }

 /* Milestone Section */
 .milestone-section {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     padding: 60px 0;
 }

 .milestone-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin-top: 30px;
 }

 .milestone-card {
     background: white;
     border-radius: 15px;
     padding: 25px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .milestone-card.achieved {
     background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
     color: white;
 }

 .milestone-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .milestone-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .milestone-status {
     font-size: 0.9rem;
     opacity: 0.9;
 }

 /* Growth Chart */
 .growth-section {
     padding: 60px 0;
     background: white;
 }

 .growth-stats {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 20px;
     margin-top: 30px;
 }

 .growth-item {
     text-align: center;
     flex: 1;
     min-width: 150px;
 }

 .growth-value {
     font-size: 2rem;
     font-weight: 800;
     color: #667eea;
     margin-bottom: 5px;
 }

 .growth-label {
     font-size: 0.9rem;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .progress-bar-custom {
     height: 10px;
     background: #e9ecef;
     border-radius: 5px;
     margin: 20px 0;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(90deg, #667eea, #764ba2);
     border-radius: 5px;
     transition: width 1.5s ease;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .statistics-header h2 {
         font-size: 2rem;
     }

     .stat-number {
         font-size: 2.2rem;
     }

     .stats-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .growth-stats {
         flex-direction: column;
     }
 }