
      /* Additional About Page Styles */
      .about-hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 6rem 2rem 2rem;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
      }

      .about-hero-content {
        text-align: center;
        max-width: 800px;
        position: relative;
        z-index: 1;
      }

      .about-hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #8B5CF6, #06B6D4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .about-hero-subtitle {
        font-size: 1.2rem;
        color: #94a3b8;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeInUp 1s ease 0.5s forwards;
      }

      .about-mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
      }

      .mission-card {
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .mission-card:hover {
        transform: translateY(-10px);
        border-color: rgba(139, 92, 246, 0.3);
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
      }

      .mission-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(45deg, #8B5CF6, #06B6D4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
      }

      .mission-card h3 {
        font-size: 1.4rem;
        color: #06B6D4;
        margin-bottom: 1rem;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }

      .team-card {
        background: rgba(249, 115, 22, 0.05);
        border: 1px solid rgba(249, 115, 22, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
      }

      .team-card:hover {
        transform: translateY(-10px);
        border-color: rgba(249, 115, 22, 0.3);
      }

      .team-image {
        height: 350px;
        background: linear-gradient(135deg, #F97316, #8B5CF6);
        position: relative;
      }

      .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
      }

      .team-card:hover .team-overlay {
        opacity: 1;
      }

      .team-social {
        display: flex;
        gap: 1rem;
      }

      .team-social a {
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s ease;
      }

      .team-social a:hover {
        color: #8B5CF6;
        transform: scale(1.2);
      }

      .team-info {
        padding: 1.5rem;
        text-align: center;
      }

      .team-info h3 {
        font-size: 1.3rem;
        color: #F97316;
        margin-bottom: 0.5rem;
      }

      .team-info p {
        color: #94a3b8;
        font-size: 0.9rem;
      }

      .timeline {
        position: relative;
        padding: 2rem 0;
      }

      .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #8B5CF6, #06B6D4);
        transform: translateX(-50%);
      }

      .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        position: relative;
      }

      .timeline-content {
        width: 45%;
        background: rgba(16, 185, 129, 0.05);
        border: 1px solid rgba(16, 185, 129, 0.1);
        border-radius: 15px;
        padding: 1.5rem;
        transition: all 0.3s ease;
      }

      .timeline-content:hover {
        transform: translateY(-5px);
        border-color: rgba(16, 185, 129, 0.3);
      }

      .timeline-content.left {
        margin-right: auto;
      }

      .timeline-content.right {
        margin-left: auto;
      }

      .timeline-dot {
        width: 20px;
        height: 20px;
        background: linear-gradient(45deg, #8B5CF6, #06B6D4);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
      }

      .timeline-content h3 {
        font-size: 1.2rem;
        color: #10B981;
        margin-bottom: 0.5rem;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }

      .value-card {
        background: rgba(6, 182, 212, 0.05);
        border: 1px solid rgba(6, 182, 212, 0.1);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
      }

      .value-card:hover {
        transform: scale(1.05);
        border-color: rgba(6, 182, 212, 0.3);
      }

      .value-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        background: linear-gradient(45deg, #06B6D4, #10B981);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
      }

      .value-card h3 {
        font-size: 1.3rem;
        color: #06B6D4;
        margin-bottom: 1rem;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
      }

      .stat-card {
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
      }

      .stat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(139, 92, 246, 0.3);
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(45deg, #8B5CF6, #06B6D4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
      }

      .achievements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .achievement-card {
        background: rgba(249, 115, 22, 0.05);
        border: 1px solid rgba(249, 115, 22, 0.1);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
      }

      .achievement-card:hover {
        transform: rotateY(10deg);
        border-color: rgba(249, 115, 22, 0.3);
      }

      .achievement-icon {
        font-size: 3rem;
        color: #F97316;
        margin-bottom: 1rem;
      }

      .join-us {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
        text-align: center;
        padding: 4rem 2rem;
      }

      .join-us-content {
        max-width: 600px;
        margin: 0 auto;
      }

      .join-us .btn-primary {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
        margin-top: 2rem;
      }

      /* Interactive Hover Effects */
      .mission-card, .team-card, .value-card, .stat-card, .achievement-card {
        position: relative;
        overflow: hidden;
      }

      .mission-card::before, .team-card::before, .value-card::before, .stat-card::before, .achievement-card::before {
        content: '';
        position: absolute;
        top: var(--mouse-y, 0);
        left: var(--mouse-x, 0);
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }

      .mission-card:hover::before, .team-card:hover::before, .value-card:hover::before, .stat-card:hover::before, .achievement-card:hover::before {
        opacity: 1;
      }

      /* Animations */
      .fade-in-slide {
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInSlide 0.8s ease forwards;
      }

      @keyframes fadeInSlide {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .flip-in {
        opacity: 0;
        transform: rotateY(90deg);
        animation: flipIn 0.8s ease forwards;
      }

      @keyframes flipIn {
        to {
          opacity: 1;
          transform: rotateY(0);
        }
      }

      @media (max-width: 768px) {
        .about-hero {
          padding: 5rem 1rem 2rem;
        }

        .about-hero-title {
          font-size: 2rem;
        }

        .timeline::before {
          left: 20px;
        }

        .timeline-content {
          width: 100%;
          margin-left: 50px;
        }

        .timeline-dot {
          left: 20px;
        }

        .timeline-content.left,
        .timeline-content.right {
          margin-right: 0;
        }

        .about-mission-grid,
        .team-grid,
        .values-grid,
        .stats-grid,
        .achievements-grid {
          grid-template-columns: 1fr;
        }
      }
   