35132-vm/index.php
Flatlogic Bot fd73082fc6 v3
2025-10-23 09:12:51 +00:00

86 lines
4.6 KiB
PHP

<?php require_once 'includes/header.php'; ?>
<!-- Hero Section -->
<section class="hero">
<div class="hero-overlay"></div>
<div class="container">
<h1 class="display-3">The Future of College Management</h1>
<p class="lead">AI-powered academic integrity, seamless administration, and a globally-ready platform.</p>
<a href="#contact" class="btn btn-primary btn-lg">Request a Demo</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<h2 class="section-title">Redefining Education Technology</h2>
<div class="row align-items-center">
<div class="col-lg-6">
<p class="lead">Zone is a comprehensive, responsive College Management System designed for the modern educational landscape. From admission to graduation, Zone streamlines every administrative and academic process.</p>
<p>Our system is built to be scalable, secure, and ready for international deployment, with features like multi-language support, advanced attendance tracking, and a unique AI-powered system to ensure academic integrity.</p>
</div>
<div class="col-lg-6 text-center">
<img src="https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=600" class="img-fluid rounded shadow-lg" alt="Team collaborating">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="section">
<div class="container">
<h2 class="section-title">Core Features</h2>
<div class="row g-4">
<div class="col-md-6 col-lg-4 d-flex align-items-stretch">
<div class="feature-card">
<i class="bi bi-shield-check feature-icon"></i>
<h3>AI-Powered Integrity</h3>
<p>Detect AI-generated content, monitor exams, and uphold academic honor with our cutting-edge anti-AI system.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex align-items-stretch">
<div class="feature-card">
<i class="bi bi-person-check-fill feature-icon"></i>
<h3>Advanced Attendance</h3>
<p>Utilize QR codes, selfie verification, biometrics, and more for a fraud-proof attendance system.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex align-items-stretch">
<div class="feature-card">
<i class="bi bi-globe2 feature-icon"></i>
<h3>Globally Ready</h3>
<p>Built for international use with multi-language UI, currency support, and cross-border compliance features.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<h2 class="section-title">Get in Touch</h2>
<div class="row">
<div class="col-lg-8 mx-auto">
<div id="form-feedback"></div>
<form id="contactForm" novalidate>
<div class="mb-3">
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="mb-3">
<input type="email" class="form-control" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="mb-3">
<textarea class="form-control" id="message" name="message" rows="5" placeholder="Your Message" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<?php require_once 'includes/footer.php'; ?>