import { motion } from "framer-motion"; import { useState, useEffect } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Phone, MapPin, Award, Users, BookOpen, Star, Target, ClipboardCheck, GraduationCap } from "lucide-react"; // AUTHORITY / ALLEN-STYLE CONTENT const results = [ { title: "JEE Advanced", value: "Top Selections" }, { title: "NEET", value: "High Scores" }, { title: "Consistency", value: "Year-on-Year Results" }, ]; const faculty = [ { name: "Ajay Prasad", subject: "Mathematics · IIT Delhi" }, { name: "Govind Kumar", subject: "Chemistry · IIT Kanpur" }, { name: "Zaffar", subject: "Physics · NIT Rourkela" }, { name: "Dr. Rajnish Kumar", subject: "Biology" }, ]; const reviews = [ { name: "Rohit Sharma", text: "Strong discipline and regular testing helped me improve a lot.", rating: 5 }, { name: "Sneha Patil", text: "Faculty focus on concepts, not shortcuts. Very effective.", rating: 5 }, { name: "Aman Verma", text: "Best institute for serious IIT & NEET preparation.", rating: 4 }, ]; export default function VisionaryAcademyWebsite() { const [facultyIndex, setFacultyIndex] = useState(0); useEffect(() => { const interval = setInterval(() => { setFacultyIndex((prev) => (prev + 1) % faculty.length); }, 4000); return () => clearInterval(interval); }, []); return (
{/* NAVBAR */}
{/* HERO – NEW DESIGN */}
{/* New Background Image */} Students studying in classroom
{/* Hero Image Grid – FIXED */}
{["classroom","students studying","teacher teaching","study room"].map((q, i) => ( Classroom environment ))}
{/* Content */}

Building Strong Foundations for IIT‑JEE & NEET Success

Real classrooms. Serious teaching. Disciplined preparation for competitive exams.

{/* RESULTS */}
{results.map((r, i) => (

{r.title}

{r.value}

))}
{/* ABOUT US */}

About Visionary IIT & NEET Academy

Visionary IIT & NEET Academy is a dedicated coaching institute built on academic discipline, concept clarity, and consistent performance in competitive examinations.

Our teaching system focuses on strong fundamentals, structured classroom programs, regular evaluation, and continuous mentoring to help students achieve success in IIT‑JEE, NEET, and other competitive exams.

We believe serious preparation, guided by experienced faculty, creates confident and successful students.

{/* TEACHING METHODOLOGY */}

Our Teaching Methodology

Concept Clarity

Strong fundamentals with step-by-step explanation.

Regular Evaluation

Weekly tests, analysis, and performance tracking.

Personal Mentoring

Individual guidance to strengthen weak areas.

{/* CAMPUS & CLASSROOM GALLERY */}

Campus & Classroom Environment

{[1,2,3,4,5,6,7,8].map((i) => ( ))}
{/* PROGRAMS */}

Programs Offered

{["IIT-JEE", "NEET", "MHT-CET", "Foundation"].map((p, i) => (

{p}

Structured classroom & test-based preparation

))}
{/* FACULTY – AUTO SLIDER WITH BUTTONS */}

Our Faculty

{/* Slider */}
{faculty.concat(faculty).map((f, i) => (
{f.name}

{f.name}

{f.subject}

))}
{/* Controls */}
{/* STUDENT LIFE & ACTIVITIES */}

Student Life & Academic Culture

A Focused, Disciplined Environment

Our classrooms maintain academic discipline, punctual schedules, and a competitive yet supportive environment.

Students are trained to handle pressure, manage time effectively, and consistently improve performance.

{/* REVIEWS */}

Student Reviews

{reviews.map((r, i) => (

{r.name}

{[...Array(r.rating)].map((_, i) => ( ))}

{r.text}

))}
{/* CTA */}

Admissions Open for IIT‑JEE & NEET

Limited seats • Entrance-based admission • Personal mentoring

{/* FOOTER */}

Contact

720-805-6403 / 885-012-6734

Kharghar & Ulwe, Navi Mumbai

); }