     :root {
            --primary: #4CAF50;
            --secondary: #2196F3;
            --accent: #FF9800;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gradient: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            --gradient-vibrant: linear-gradient(135deg, #ff00cc, #3333ff, #00ccff);
                --primary-bg: #e0e5ec;
            --primary-text: #2d3436;
            --accent-color: #6c5ce7;
            --shadow-light: rgba(255, 255, 255, 0.8);
            --shadow-dark: rgba(163, 177, 198, 0.6);
            --card-radius: 20px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* About Page Specific Styles */
        
        /* Hero Banner */
        .about-hero {
            background: var(--gradient-vibrant);
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 70px;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }
        
        /* Mission Section */
        .mission-section {
            background-color: white;
        }
        
        .mission-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .mission{
            
            color: deeppink;
        }
        .vission{
            color: #dfc016;
        }
        .mission , .vission{
            font-size: 1.2rem;
        }
        .mission-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .mission-content h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .mission-content h2 span {
            color: var(--primary);
        }
        
        .mission-content p {
            color: #666;
            margin-bottom: 30px;
        }
        
        .mission-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Values Section */
        .values-section {
            background-color: #f8f9fa;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
       .value-card {
  background: #e0e0e0; /* Light gray base for neomorphism */
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  border-color: darkorange;

  /* Neomorphic raised effect */
  box-shadow: 8px 8px 16px #bebebe, 
              -8px -8px 16px #ffffff;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 4px 4px 10px #bebebe, 
              inset -4px -4px 10px #ffffff;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--primary);

  /* Neomorphic circular button look */
  background: #e0e0e0;
  box-shadow: 4px 4px 10px #bebebe,
              -4px -4px 10px #ffffff;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  color: #555;
}
/* Quantum Neomorphic Team CSS - Complete Styling */
:root {
    --quantum-primary: #0a192f;
    --quantum-secondary: #172a45;
    --quantum-accent: #64ffda;
    --quantum-text: #ccd6f6;
    --quantum-subtext: #8892b0;
    --quantum-shadow-dark: rgba(2, 12, 27, 0.7);
    --quantum-shadow-light: rgba(100, 255, 218, 0.1);
    --quantum-glow: 0 0 10px rgba(100, 255, 218, 0.5);
}

#quantum-team {
    background: linear-gradient(135deg, var(--quantum-primary), var(--quantum-secondary));
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

#quantum-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, var(--quantum-shadow-light) 0%, transparent 50%);
    pointer-events: none;
}

.neo-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

/* Header Styles */
#team-heading.neo-section-title {
    font-size: 2.5rem;
    color: var(--quantum-text);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#team-heading.neo-section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: var(--quantum-accent);
    margin: 1rem auto;
    box-shadow: var(--quantum-glow);
}

#team-subhead.neo-section-subtitle {
    color: var(--quantum-subtext);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Team Matrix Grid - Fixed responsive layout */
.neo-team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Individual Card Styling */
.neo-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: rgba(10, 25, 47, 0.7);
    border-radius: 15px;
    padding: 1.8rem 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(100, 255, 218, 0.15);
    box-shadow: 0 10px 25px var(--quantum-shadow-dark),
                inset 0 0 20px rgba(100, 255, 218, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.neo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(100, 255, 218, 0) 0%,
        rgba(100, 255, 218, 0.1) 50%,
        rgba(100, 255, 218, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
}

.neo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--quantum-shadow-dark),
                inset 0 0 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

/* Profile Image Styling */
.neo-profile {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 2px solid var(--quantum-accent);
    box-shadow: var(--quantum-glow);
    overflow: hidden;
}

.neo-holo-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--quantum-accent);
    border-right-color: var(--quantum-accent);
    animation: spinHolo 8s linear infinite;
    opacity: 0.8;
}

@keyframes spinHolo {
    0% { transform: rotate(0deg); opacity: 0.8; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg); opacity: 0.8; }
}

/* Card Content Styling */
.neo-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.neo-name {
    font-size: 1.4rem;
    color: var(--quantum-text);
    margin-bottom: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.neo-role {
    color: var(--quantum-accent);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.neo-role::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--quantum-accent);
    opacity: 0.5;
}

.neo-bio {
    color: var(--quantum-subtext);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    min-height: 60px;
    font-weight: 300;
}

/* Social Links Styling */
.neo-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.4rem;
}

.neo-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quantum-accent);
    background: transparent;
    border: 1px solid var(--quantum-accent);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.neo-social-btn:hover {
    background: var(--quantum-accent);
    color: var(--quantum-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
}

.neo-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: 0.5s;
}

.neo-social-btn:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .row {
        gap: 1.5rem;
    }
    
    .neo-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .neo-card {
        width: 100%;
        max-width: 350px;
    }
    
    #team-heading.neo-section-title {
        font-size: 2rem;
    }
}
/* Keep all other existing styles (hover effects, animations etc.) */
        /* Story Timeline */
        .story-section {
            background-color: #f8f9fa;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background: wheat;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .timeline-content:after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: deeppink;
            transform: rotate(45deg);
            top: 30px;
            box-shadow: 5px -5px 10px rgba(0,0,0,0.05);
        }
        
        .timeline-item:nth-child(odd) .timeline-content:after {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-content:after {
            left: -10px;
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .timeline-item:nth-child(odd) {
            animation: fadeInLeft 1s ease;
        }
        
        .timeline-item:nth-child(even) {
            animation: fadeInRight 1s ease;
        }
        
        /* Partners Section */
        .partners-section {
            background-color: white;
        }
        
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            align-items: center;
        }
        
        .partner-logo {
            height: 60px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        /* CTA Section */
        .about-cta {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .about-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Footer (same as other pages) */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #eee;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            margin-bottom: 10px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: #ccc;
        }
        
        .newsletter button {
            width: 100%;
            border: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
               /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
          
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
           
            
            .about-hero {
                padding: 150px 0 80px;
                margin-top: 60px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .mission-container {
                grid-template-columns: 1fr;
            }
            
            .mission-image {
                order: -1;
            }
            
            .mission-stats {
                grid-template-columns: 1fr;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 20px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-content:after {
                left: 20px !important;
            }
            
            .timeline-item:nth-child(even) .timeline-content:after {
                left: 20px;
            }
        }
 
@media (max-width: 480px) {
  .mission-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
  }

  .stat-item {
    flex: 1;
  }

  .stat-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 2px;
  }
}
 .social-links a{
        text-decoration: none;
    }