🔧
System Status Maintenance Mode
⏱️
Expected Return Soon
👥
Community 0+ Waiting
📧
Updates Email Notifications

We'll be back soon

UIET.social is currently under maintenance. We're working hard to bring you something amazing!

// Navigation functionality function showSection(sectionName) { // Hide all sections const sections = document.querySelectorAll('.content-section'); for (const section of sections) { section.classList.remove('active'); } // Show selected section const targetSection = document.getElementById(sectionName + '-section'); if (targetSection) { targetSection.classList.add('active'); } // Update navigation links const navLinks = document.querySelectorAll('.nav-link'); for (const link of navLinks) { link.classList.remove('active'); }

📋 About This Platform

This website is developed and maintained by UIET students as an independent initiative to serve our university community. We are passionate students working together to create valuable resources and connections for our fellow UIETians.

Important Notice: This is not an official website of the University Institute of Engineering and Technology (UIET). All content and services provided here are student-driven initiatives aimed at enhancing the student experience.

Our mission is to bridge the gap between students and provide a platform for collaboration, // Animate elements with staggered fade-in const fadeElements = document.querySelectorAll('.fade-in'); let index = 0; for (const element of fadeElements) { element.style.animationDelay = `${index * 0.2}s`; index++; }

📧

Email Support

Have questions or need more details? Reach out to us directly.

info@uiet.social
📱

Follow Us

Stay connected with our latest updates and announcements.

💬 const statsObserver = new IntersectionObserver((entries) => { for (const entry of entries) { if (entry.isIntersecting) { const statCards = entry.target.querySelectorAll('.stat-card'); let cardIndex = 0; for (const card of statCards) { const currentIndex = cardIndex; setTimeout(() => { const numberElement = card.querySelector('.stat-number'); const targetValue = parseInt(numberElement.textContent); animateCounter(numberElement, targetValue, 1500 + (currentIndex * 200)); }, currentIndex * 300); cardIndex++; } statsObserver.unobserve(entry.target); } } }, observerOptions); type="email" class="email-input" placeholder="Enter your email address" // Dynamic card interactions const cards = document.querySelectorAll('.contact-card, .contribution-card, .stat-card, .about-card'); for (const card of cards) { card.addEventListener('mouseenter', function() { this.style.transform = this.classList.contains('stat-card') ? 'translateY(-5px) scale(1.05)' : 'translateY(-8px) scale(1.02)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0) scale(1)'; }); // Add random delay to glow animation if (card.classList.contains('glow-effect')) { card.style.animationDelay = `${Math.random() * 2}s`; } }
💻

Development

Help us build amazing features with web development, mobile apps, backend systems, and more.

🎨

Design & UI/UX

Create beautiful interfaces and user experiences that make our platform intuitive and engaging.

📈

Marketing

Help us reach more students through social media, content creation, and community outreach.

📝

Content Creation

Write articles, create tutorials, and produce content that helps fellow students succeed.

🔧

Project Management

Organize teams, manage timelines, and ensure our projects run smoothly and efficiently.

💡

Ideas & Innovation

Share your creative ideas and innovative solutions to improve student life at UIET.

Ready to Make a Difference? 🚀

We appreciate every form of contribution, no matter how big or small. Join our growing community of student contributors and help us build something amazing together!

What we need from you:
• Your contact information
• Brief description of your skills and interests
• What specific area you'd like to contribute to
• Any previous experience or portfolio (optional)

✉️ Apply to Contribute

Contact Us

Stay connected with UIET.social through multiple channels

📧

Email

Get in touch with our team

// Parallax effect for floating elements document.addEventListener('mousemove', function(e) { const mouseX = (e.clientX / window.innerWidth) * 100; const mouseY = (e.clientY / window.innerHeight) * 100; const dynamicElements = document.querySelectorAll('.dynamic-element'); for (const element of dynamicElements) { const speed = 0.05; const x = (mouseX - 50) * speed; const y = (mouseY - 50) * speed; element.style.transform = `translate(${x}px, ${y}px)`; } }); UIET Social Group // Add random animations to contribution cards const contributionCards = document.querySelectorAll('.contribution-card'); let contributionIndex = 0; for (const card of contributionCards) { // Stagger the initial animation card.style.animationDelay = `${contributionIndex * 0.1}s`; // Add random hover delay card.addEventListener('mouseenter', function() { setTimeout(() => { this.style.transform = 'translateY(-5px) scale(1.02) rotate(1deg)'; }, Math.random() * 100); }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0) scale(1) rotate(0deg)'; }); contributionIndex++; // Intersection Observer for scroll animations const scrollObserver = new IntersectionObserver((entries) => { for (const entry of entries) { if (entry.isIntersecting) { entry.target.style.animation = 'slideInLeft 0.8s ease forwards'; scrollObserver.unobserve(entry.target); } } }, { threshold: 0.1 }); // Observe sections for scroll animations for (const section of document.querySelectorAll('.info-section, .contribution-section, .cta-section, .about-content')) { scrollObserver.observe(section); }
  • Project collaboration space
  • Our Team

    We are a passionate group of UIET students working together to create something meaningful for our community. Our diverse team brings together skills in development, design, marketing, and project management.

    Thank you for your patience and support! �

    © 2025 UIET Social Community. All rights reserved.

    Developed with ❤️ by UIET Students