
        /* Dropdown Menu Styles */
        .nav-links li {
            position: relative;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(10px);
            min-width: 200px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding-top: 0.5rem;
            margin-top: 0;
            border: 1px solid rgba(245, 158, 11, 0.3);
            z-index: 1001;
        }

        .dropdown-content a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            padding-left: 2rem;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown > a::after {
            content: ' ▼';
            font-size: 0.7rem;
            margin-left: 0.3rem;
        }

        /* About Page Styles */
        .about-hero {
            background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #2d4a73 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-content {
            max-width: 900px;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #a8b5ff;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: rgba(102, 126, 234, 0.1);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #f59e0b;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #a8b5ff;
            font-size: 1.1rem;
        }

        /* Story Section */
        .story-section {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f1f38 100%);
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .story-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-text {
            color: #a8b5ff;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .story-text p {
            margin-bottom: 1.5rem;
        }

        .highlight {
            color: #f59e0b;
            font-weight: 600;
        }

        /* Founder Section */
        .founder-section {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .founder-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 4rem;
            align-items: center;
        }

       /* .founder-image {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-radius: 30px;
            padding: 2rem;
            border: 3px solid rgba(245, 158, 11, 0.5);
            text-align: center;
        } */
        
        .founder-image {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-radius: 30px;
            padding: 2rem;
            border: 3px solid rgba(245, 158, 11, 0.5);
            text-align: center;
        }

        /* Add this CSS for the image itself */
        .founder-image img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%; /* Makes the image circular */
            border: 4px solid rgba(245, 158, 11, 0.8);
            display: block;
            margin: 0 auto;
        }

        .founder-placeholder {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: white;
            font-weight: bold;
        }

        .founder-name {
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .founder-title {
            color: #f59e0b;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .founder-bio {
            color: #a8b5ff;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .founder-bio h3 {
            color: #667eea;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .credentials {
            background: rgba(102, 126, 234, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid #f59e0b;
            margin: 2rem 0;
        }

        .credentials ul {
            list-style: none;
            padding: 0;
        }

        .credentials li {
            padding: 0.8rem 0;
            color: #a8b5ff;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .credentials li::before {
            content: '✓';
            color: #f59e0b;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Mission Vision Section */
        .mission-section {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f1f38 100%);
            padding: 5rem 5%;
        }

        .mission-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .mission-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(102, 126, 234, 0.3);
            transition: all 0.3s;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            border-color: rgba(245, 158, 11, 0.7);
            box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
        }

        .mission-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .mission-card h3 {
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .mission-card p {
            color: #a8b5ff;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Values Section */
        .values-section {
            background: #0a1929;
            padding: 5rem 5%;
        }

        .values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            text-align: center;
            padding: 2.5rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 20px;
            border: 2px solid rgba(102, 126, 234, 0.2);
            transition: all 0.3s;
        }

        .value-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-card h4 {
            color: #667eea;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .value-card p {
            color: #8b9dc3;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            padding: 5rem 5%;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: white;
            color: #667eea;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .cta-btn.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: #667eea;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .story-content,
            .founder-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .founder-content {
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
    