import React, { useState, useEffect } from ‘react’; import { Calendar, MapPin, BookOpen, Users, Clock, Mail, Menu, X, ChevronRight, Award, FileText, Download, CreditCard, Cpu, Briefcase, Globe, CheckCircle } from ‘lucide-react’; const ConferenceApp = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [activeSection, setActiveSection] = useState(‘home’); const [scrolled, setScrolled] = useState(false); // Handle scroll effect for navbar useEffect(() => { const handleScroll = () => { setScrolled(window.scrollY > 20); }; window.addEventListener(‘scroll’, handleScroll); return () => window.removeEventListener(‘scroll’, handleScroll); }, []); const scrollToSection = (id) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: ‘smooth’ }); setActiveSection(id); setIsMenuOpen(false); } }; const navLinks = [ { id: ‘home’, label: ‘Home’ }, { id: ‘about’, label: ‘About’ }, { id: ‘themes’, label: ‘Major Themes’ }, { id: ‘guidelines’, label: ‘Guidelines’ }, { id: ‘dates’, label: ‘Important Dates’ }, { id: ‘registration’, label: ‘Registration’ }, { id: ‘contact’, label: ‘Contact’ } ]; const feeStructure = [ { category: “Academicians & Faculty”, color: “bg-orange-700”, plans: [ { type: “Single Author”, price: “₹1500” }, { type: “Joint Authors (Each)”, price: “₹1000” }, { type: “Online”, price: “₹800” } ] }, { category: “Research Scholars”, color: “bg-rose-700”, plans: [ { type: “Single Author”, price: “₹800” }, { type: “Joint Authors (Each)”, price: “₹600” }, { type: “Online”, price: “₹500” } ] }, { category: “Students”, color: “bg-amber-600”, plans: [ { type: “Single Author”, price: “₹500” }, { type: “Joint Authors (Each)”, price: “₹300” }, { type: “Online”, price: “₹250” } ] }, { category: “Foreign Nationals”, color: “bg-stone-600”, plans: [ { type: “Single Author”, price: “$50” }, { type: “Joint Authors (Each)”, price: “$30” }, { type: “Online”, price: “$30” } ] } ]; return (
{/* Navigation */} {/* Hero Section */}
{/* Background Image with Overlay */}
Conference Hall {/* Changed gradient to warm dark brown/orange tones */}
HIMICON 2026

AUTOMATION AND HUMANITY IN TRANSITION
Policies, Practices, Prospects, and Future Directions Toward a Better World Order

Organized by
HM College of Science & Technology, Manjeri & MAKA College of Social Science

In collaboration with WVSU Philippines & Jamia Nadwiyya Edavanna

Join leading researchers, engineers, and scientists to explore the relationship between automation, humanity, and our shared future.

Jan 21-22, 2026 | Hybrid Mode (Online/Offline)
HM College Auditorium, Kerala
{/* About Section */}

About The Event

Fostering Global Collaboration

In an era of rapid technological change, understanding the relationship between automation and humanity has become essential. HIMICON 2026 brings together scholars, policymakers, and professionals to explore how automation influences science, society, economy, culture and governance.

The discussions examine how technologies such as AI, robotics, and digital systems reshape work, communication, environmental management, creativity, and human well-being. By integrating insights from the sciences, social sciences, commerce, and the humanities, the conference promotes ethical, sustainable, and inclusive approaches to technological development.

It provides a platform for collaborative ideas that support a more resilient, culturally aware and humane future.

50+
Guest Speakers
200+
Research Papers
15
Countries
4
Workshops
Technology Abstract
{/* Major Themes Section */}

Major Themes

We invite original research papers on the following interdisciplinary themes. Selected papers will be published in Scopus Indexed Journals.

{[ { icon: , title: “Science & Technology”, description: “Explores how advancements in AI, robotics, automation, and digital systems are transforming modern life. Integrating concepts from computer science, physics, biology, chemistry, environmental science, geology, geography and mathematical science.” }, { icon: , title: “Commerce / Management”, description: “Examines how automation is transforming business. It covers finance, accounting, marketing, HR, operations, supply chain, entrepreneurship, and corporate governance. It highlights leadership, ethics, workforce reskilling, and organizational adaptability in a rapidly evolving economy.” }, { icon: , title: “Social Sciences / Humanities”, description: “Discusses how automation influences human behaviour, society, culture, and communication. It integrates insights from psychology, sociology, political science, social work, economics, education and humanities to understand changing social dynamics, creativity, identity, and cultural expression.” } ].map((track, idx) => (
{track.icon}

{track.title}

{track.description}

))}
{/* Submission Guidelines Section */}

Submission Guidelines

{/* Abstract Guidelines */}

Abstract Guidelines

  • Word Count: 250-300 words
  • Keywords: 4 to 6 relevant keywords
  • Formatting: Times New Roman, size 12, 1.5 spacing, justified
  • Author Details: Full names, designations, institutional affiliations, and contact information (email and phone number) listed below the abstract
{/* Submit Paper Info */}

Submit Your Paper

All accepted papers will be published in the Conference Proceedings with ISBN. Papers should address the conference themes and contribute to the discourse on automated humanity and sustainable livelihoods.

Submission Checklist:

  • Original and unpublished work only
  • Aligned with conference themes
  • Follow standard academic format
  • Include abstract and keywords
Submit Paper Now
{/* Important Dates */}
{/* Decorative Circles – Updated colors */}

Important Dates

Mark your calendars for these deadlines.

{[ { label: “Abstract Submission”, date: “Dec 20, 2025”, status: “Open” }, { label: “Notification of Acceptance”, date: “Dec 22, 2025”, status: “Upcoming” }, { label: “Deadline for Fee Payment”, date: “Dec 26, 2025”, status: “Upcoming” }, { label: “Full Paper Submission”, date: “Jan 03, 2026”, status: “Upcoming” }, { label: “Confirmation of Acceptance”, date: “Jan 05, 2026”, status: “Upcoming” }, { label: “Conference Date”, date: “Jan 21-22, 2026”, status: “Upcoming” } ].map((item, idx) => (
{item.status}

{item.date}

{item.label}

))}
{/* Registration Section */}

Registration Fees

Choose the category that best fits your role.

{feeStructure.map((tier, idx) => (

{tier.category}

{tier.plans.map((plan, pIdx) => (
{plan.type} {plan.price}
))}
))}

Payment Information

Account Name: PROF.IN CHARGE H M COLLEGE MANJERI

Account Number: 000039202805226

IFSC Code: SBIN0004365

Bank Name: STATE BANK OF INDIA

Branch: MANJERI

UPI ID: HMCOLLEGE@SBI

*Please keep the transaction ID handy for the registration form.

Proceed to Register Pay first, then register
{/* Footer */}
HIMICON 2026

HM College of Science & Technology
Manjeri, Malappuram
Kerala, India – 676122

Contact Us

hmcollegeconf2026@gmail.com
8075611845, 8593917842

Quick Links

© 2026 HM College. All rights reserved. Designed by Dept. of IT.
); }; export default ConferenceApp;