 /*about*/
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
                /* Sidenav Open Button (hamburger menu icon) */
        .open-nav {
            font-size: 30px;
            cursor: pointer;
            color: white;
            position: absolute;
            top: 20px;
            right: 25px;
            z-index: 1100; /* Higher than sidenav */
            opacity: 0;
            animation: slideInRight 1s ease 0.4s forwards;
            transition: color 0.3s ease;
        }

        .open-nav:hover {
            color: #ff4d00;
        }

        /* Animated Background Elements (from first theme) */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape2 { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 2s; }
        .shape3 { width: 60px; height: 60px; top: 80%; left: 70%; animation-delay: 4s; }

        /* Side Navigation */
        .sidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1001;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, black, #4d4949);
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
        }

        .sidenav a {
            padding: 10px 15px 10px 32px;
            text-decoration: none;
            font-size: 22px;
            color: #ccc;
            display: block;
            transition: 0.3s;
        }

        .sidenav a:hover {
            color: #ff4d00;
        }

        .sidenav .closebtn {
            position: absolute;
            top: 5px;
            right: 25px;
            font-size: 36px;
        }

        #main {
            transition: margin-left .5s;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, black, #665f5f);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 77, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            width: 80px;
            height: 60px;
            object-fit: contain; /* Preserves shape */
            box-shadow:none;
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

      h2 {
          font-weight: 700;
          letter-spacing: 1px;
          background: linear-gradient(90deg, #00f7ff, #00d9f5, #00b3e6);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          animation: titleGlow 3s ease-in-out infinite alternate;
      }

      @keyframes titleGlow {
          from { filter: brightness(1); }
          to { filter: brightness(1.2); }
      }

        .open-nav {
            font-size: 30px;
            cursor: pointer;
            color: white;
            transition: color 0.3s ease;
            opacity: 0;
            animation: slideInRight 1s ease 0.4s forwards;
        }

        .open-nav:hover {
            color: #ff4d00;
        }

        /* Hero Section */
        .hero {
            height: 80vh; /* Reduced height for a content page */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #ff4d00;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 1s forwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #f0f0f0;
        }

        /* Generic Section Styling */
        .content-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 20px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section (White background) */
        .about-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            max-width: 1200px;
            margin: -80px auto 40px auto; /* Pulls it up slightly over the hero */
            padding: 60px 5%;
            position: relative;
            z-index: 10;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .about-section .section-title {
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .about-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 77, 0, 0.3);
        }
        
        .about-card h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .about-card p {
            color: #666;
        }

        /* Team Section (Purple background) */
        .team-section .section-title {
            color: white;
        }
        
        .team-section .section-subtitle {
             color: rgba(255,255,255,0.8);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .team-member:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff4d00, #ff8c00); /* Orange accent */
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 5px 15px rgba(255, 77, 0, 0.4);
        }

        .team-member h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .team-member p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .team-member .role {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            display: inline-block;
            font-weight: 500;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.8);
            color: white;
        }
        
        .stats-section .section-title {
             color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #ff8c00; /* Orange accent */
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: white;
            text-align: center;
            padding: 2rem;
            width: 100%;
        }

        footer p {
            margin: 0;
            font-size: 16px;
            opacity: 0.8;
        }


        /* Animations */
        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
            from { opacity: 0; transform: translateX(-50px); }
        }

        @keyframes slideInRight {
            to { opacity: 1; transform: translateX(0); }
            from { opacity: 0; transform: translateX(50px); }
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
            from { opacity: 0; transform: translateY(50px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(20px) rotate(240deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.1rem; }
            .about-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
            .section-title { font-size: 32px; }
        }