Viewing file: front_features.php (2.88 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<section id="institute-services" class="alt-services section"> <div class="container" data-aos="fade-up" data-aos-delay="100"> <div class="row g-4"> <?php // Array of institute highlights $institute_features = [ [ "icon" => "bi bi-book-half", "title" => "Professional Courses", "desc" => "We offer industry-oriented professional courses with practical training to prepare students for real-world challenges.", "image" => "admin/images/pc.jpg", "alt" => "Professional Courses", "delay" => 100, "featured" => true ], [ "icon" => "bi bi-building", "title" => "Modern Infrastructure", "desc" => "Well-equipped classrooms, computer labs, and workshops designed to support effective learning and skill development.", "image" => "admin/images/mc.jpg", "alt" => "Modern Infrastructure", "delay" => 200, "featured" => false ], [ "icon" => "bi bi-people", "title" => "Experienced Faculty", "desc" => "Highly qualified and dedicated faculty members to guide students in academics, projects, and career building.", "image" => "admin/images/fac.jpg", "alt" => "Experienced Faculty", "delay" => 300, "featured" => false ], [ "icon" => "bi bi-briefcase", "title" => "Placement Assistance", "desc" => "Strong industry connections and regular campus interviews ensure students get excellent placement opportunities.", "image" => "admin/images/pla.jpg", "alt" => "Placement Assistance", "delay" => 400, "featured" => false ] ];
// Loop through institute features foreach ($institute_features as $feature) { $featuredClass = $feature['featured'] ? " featured" : ""; echo ' <div class="col-lg-6 col-xl-3"> <div class="service-card'.$featuredClass.'" data-aos="zoom-in" data-aos-delay="'.$feature['delay'].'"> <div class="card-header"> <div class="icon-box"> <i class="'.$feature['icon'].'"></i> </div> <h4>'.$feature['title'].'</h4> </div> <div class="card-body"> <p>'.$feature['desc'].'</p> <div class="feature-image"> <img src="'.$feature['image'].'" alt="'.$feature['alt'].'" class="img-fluid"> </div> </div> <div class="card-footer"> <a href="admission.php" class="btn-explore"> Apply Now <i class="bi bi-arrow-up-right"></i> </a> </div> </div> </div><!-- /Institute Feature Card --> '; } ?> </div> </div> </section><!-- /Institute Services Section -->
|