<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<!-- Bootstrap JS (with Popper) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Chiac ASI</title>
<link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png">
<!-- ✅ Correct Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
integrity="sha512-Fo3rlrZj/kTcKU5eYOJtA2RZz8Ug5v8D6QqG8XqgrhF7qOdwJXZ1bsWhzBGlG8SRK3pW7YT8gVqIHklh3PR76g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<!-- Your Custom CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="video-background">
<video autoplay muted loop playsinline class="bg-video">
<source src="video/Gradient Harmony.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<nav class="navbar navbar-expand-lg navbar-light bg-transparent">
<div class="container custom-container navbars">
<a class="navbar-brand" href="index.php" style="font-family: 'Josefin Sans', sans-serif; font-weight: 500;">
<img src="Images/chiac-transparent-logo.png" alt="" width="140" height="80">
CHIAC ASI
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<?php
$currentPage = basename($_SERVER['PHP_SELF']);
?>
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link <?php if ($currentPage == 'technology.php') {
echo 'active';
} ?>" href="technology.php">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($currentPage == 'about-us.php') {
echo 'active';
} ?>" href="about-us.php">About</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($currentPage == 'contactus.php') {
echo 'active';
} ?>" href="contactus.php">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($currentPage == 'research.php') {
echo 'active';
} ?>" href="research.php">Research</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($currentPage == 'blog.php') {
echo 'active';
} ?>" href="blog.php">Press and Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container custom-container top-section pb-5 px-5">
<h1 class="">Superintelligent Systems and Society <br> Built together</h1>
<p class="ms-2">
Founded in 2023, Chiac ASI (Panchasutra Ltd) is the world’s first superintelligence venture with a
singular mission: to super-align the rapidly evolving world of artificial intelligence
with human values and ethics. While others focus solely on pushing AI capabilities, we are
equally — and relentlessly — focused on solving the control problem, ensuring AI remains safe,
predictable, and beneficial.
</p>
</div>
</section>
</body>
</html>