
        /* Additional CSS for About Page */
        .about-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.3) 0%, var(--background) 70%), url('image/coop2.jpeg') no-repeat center center/cover;
            text-align: center;
            color: var(--foreground);
        }
        .about-hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        .about-hero h1 {
            margin-top: 50px;
            font-family: var(--font-orbitron);
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .about-hero p {
            font-size: 1.3rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .stat-box {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .stat-number {
            font-family: var(--font-orbitron);
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }
        .stat-label {
            color: var(--muted-foreground);
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin: 3rem 0;
            width: 50%;
            padding: 1rem;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            background: var(--card);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
        }
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background: var(--secondary);
            border-radius: 50%;
            border: 3px solid var(--primary);
        }
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -30px;
        }
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -30px;
        }
        .timeline-date {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .timeline-title {
            font-family: var(--font-orbitron);
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .tabs-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .tabs-nav {
            display: flex;
            background: var(--card);
            border-radius: var(--radius) var(--radius) 0 0;
            overflow: hidden;
        }
        .tab-btn {
            flex: 1;
            padding: 1rem;
            background: transparent;
            border: none;
            color: var(--muted-foreground);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tab-btn.active {
            background: var(--primary);
            color: white;
        }
        .tab-content {
            display: none;
            padding: 2rem;
            background: var(--card);
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .tab-content.active {
            display: block;
        }
        .accordion-item {
            border-bottom: 1px solid var(--border);
            margin-bottom: 1rem;
        }
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            font-weight: 600;
        }
        .accordion-header:hover {
            color: var(--primary);
        }
        .accordion-header i {
            transition: transform 0.3s ease;
        }
        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .accordion-item.active .accordion-body {
            max-height: 500px;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .team-card {
            text-align: center;
            padding: 2rem;
            background: var(--card);
            border-radius: var(--radius);
            transition: transform 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }
        .awards-list {
            
              margin-top: 2rem;
              text-align: center;
              color: var(--muted-foreground);
        }
        
        .team-name {
            font-family: var(--font-orbitron);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .team-role {
            color: var(--secondary);
            font-weight: 600;
        }
        .team-bio {
            color: var(--muted-foreground);
            margin-top: 1rem;
            line-height: 1.6;
        }
        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 2rem;
        }
        .vision-card, .mission-card {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        .future-roadmap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .roadmap-item {
            padding: 1rem 2rem;
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .roadmap-item:hover {
            border-color: var(--primary);
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                left: 0 !important;
                text-align: left;
            }
            .timeline-item .timeline-content::before {
                left: 10px !important;
                right: auto !important;
            }
            .vision-mission {
                grid-template-columns: 1fr;
            }
            .tabs-nav {
                flex-wrap: wrap;
            }
        }
  