    :root {
        --primary-blue: #0077be;
        --primary-blue-dark: #005a8b;
        --secondary-blue: #00a8e6;
        --accent-green: #00d4aa;
        --accent-green-dark: #00b894;
        --dark-bg: #0a0f1c;
        --dark-section: #111827;
        --text-light: #f8fafc;
        --text-gray: #64748b;
        --gradient-primary: linear-gradient(135deg, #0077be 0%, #00a8e6 50%, #00d4aa 100%);
        --gradient-dark: linear-gradient(135deg, #0a0f1c 0%, #111827 100%);
        --shadow-glow: 0 0 30px rgba(0, 119, 190, 0.3);
        --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    }


    #cs-text {
            text-align: center;
            }
    #con1{
        text-align: center;
        }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--text-light);
        background: var(--dark-bg);
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header & Navigation */
    .header {
       
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 15, 28, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-light);
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .logo-text {
		
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
		
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--accent-green);
    }

    .cta-button {
        background: var(--gradient-primary);
        color: white;
        padding: 0.7rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-glow);
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
    }

    /* Hero Section */
    .hero {
        margin-top: 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: var(--gradient-dark);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(10, 15, 28, 0.85), rgba(17, 24, 39, 0.85));
		    /*   background: linear-gradient(rgba(10, 15, 28, 0.85), rgba(17, 24, 39, 0.85)), url('assets/images/hero-bg.jpg');*/
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero::after {
        content: '';
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-gray);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-green);
        display: block;
    }

    .stat-label {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    /* Sections */
    .section {
        padding: 5rem 0;
        position: relative;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Problem Section */
    .problem {
        background: var(--dark-section);
    }

    .problem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .problem-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    .problem-card:hover {
        transform: translateY(-10px);
    }

    .problem-icon {
        font-size: 3rem;
        color: var(--accent-green);
        margin-bottom: 1rem;
    }

    /* Solution Section */
    .solution-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .feature-number {
        background: var(--gradient-primary);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    /* Technology Section */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .tech-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tech-icon {
        font-size: 3rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    /* Technology showcase */
    .tech-showcase {
        margin: 4rem 0;
        text-align: center;
    }

    .tech-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: var(--shadow-card);
        margin: 2rem 0;
    }

    /* Vision and roadmap showcase */
    .vision-showcase {
        background: rgba(255, 255, 255, 0.05);
        padding: 3rem;
        border-radius: 20px;
        margin: 3rem 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .roadmap-item {
        display: flex;
        align-items: center;
        margin: 1.5rem 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
    }

    .roadmap-icon {
        background: var(--gradient-primary);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    /* Infographic styles */
    .infographic {
        margin: 3rem 0;
        text-align: center;
    }

    .infographic img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Partners/Certifications section */
    .partners-section {
        background: rgba(255, 255, 255, 0.03);
        padding: 3rem;
        border-radius: 20px;
        margin: 3rem 0;
        text-align: center;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
    }

    .partner-logo {
        max-width: 120px;
        height: auto;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        filter: grayscale(100%);
    }

    .partner-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    /* Team Section */
    .team {
        background: var(--dark-section);
    }

    .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.05);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

    .member-photo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 1rem;
        overflow: hidden;
        border: 3px solid var(--accent-green);
        position: relative;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-photo-placeholder {
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
    }

    /* Contact Section */
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        padding: 3rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: var(--text-light);
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-green);
        box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    }

    .submit-btn {
        background: var(--gradient-primary);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
    }

    /* Footer */
    .footer {
        background: var(--dark-bg);
        padding: 3rem 0 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: var(--accent-green);
        margin-bottom: 1rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-gray);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .section {
            padding: 3rem 0;
        }

        .contact-form {
            padding: 2rem;
        }
    }

    /* Success/Error Messages */
    .form-message {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
        text-align: center;
    }

    .form-message.success {
        background: rgba(0, 212, 170, 0.1);
        border: 1px solid var(--accent-green);
        color: var(--accent-green);
    }

    .form-message.error {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid #ef4444;
        color: #ef4444;
    }

    /* Pre-seed badge */
    .pre-seed-badge {
        display: inline-block;
        background: var(--gradient-primary);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }