Viewing: default.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Jeevant Global | IT & AI Machine Learning Consulting</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> <style> :root { --primary: #6366f1; --primary-dark: #4f46e5; --secondary: #06b6d4; --accent: #f59e0b; --dark: #0f172a; --darker: #020617; --light: #f8fafc; --gray: #64748b; --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; background: var(--darker); color: var(--light); overflow-x: hidden; line-height: 1.6; } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; } /* Navigation */ .navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 5%; transition: all 0.4s ease; background: transparent; } .navbar.scrolled { background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 0.8rem 5%; } .nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; } .logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; } .nav-links { display: flex; gap: 2.5rem; list-style: none; } .nav-links a { color: var(--light); text-decoration: none; font-weight: 500; font-size: 0.95rem; position: relative; transition: color 0.3s; } .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.3s; } .nav-links a:hover::after { width: 100%; } .nav-links a:hover { color: var(--primary); } .mobile-menu-btn { display: none; background: none; border: none; color: var(--light); font-size: 1.5rem; cursor: pointer; } /* Hero Section */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 5% 80px; } .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%); z-index: 0; } .particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; } .particle { position: absolute; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; opacity: 0.5; animation: float 15s infinite; } @keyframes float { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.5; } 90% { opacity: 0.5; } 100% { transform: translateY(-100vh) translateX(50px); opacity: 0; } } .hero-content { position: relative; z-index: 2; max-width: 1400px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-text h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; } .hero-text h1 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-text p { font-size: 1.2rem; color: var(--gray); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.8; } .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; } .btn { padding: 1rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem; } .btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4); } .btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); } .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); } .btn-outline { background: transparent; color: var(--light); border: 2px solid var(--glass-border); } .btn-outline:hover { border-color: var(--primary); background: var(--glass); } .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; } .hero-image-container { position: relative; width: 100%; max-width: 500px; } .hero-image { width: 100%; height: auto; border-radius: 20px; position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); } .floating-card { position: absolute; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.8rem; animation: float-card 6s ease-in-out infinite; z-index: 3; } .floating-card:nth-child(2) { top: 10%; right: -20px; animation-delay: 0s; } .floating-card:nth-child(3) { bottom: 20%; left: -30px; animation-delay: 2s; } .floating-card:nth-child(4) { top: 50%; right: -40px; animation-delay: 4s; } @keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } .floating-card i { font-size: 1.5rem; color: var(--secondary); } .floating-card span { font-weight: 600; font-size: 0.9rem; } /* Services Section */ .services { padding: 100px 5%; position: relative; } .section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; } .section-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .section-header h2 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .section-header p { color: var(--gray); font-size: 1.1rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; } .service-card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transition: transform 0.4s ease; } .service-card:hover::before { transform: scaleX(1); } .service-card:hover { transform: translateY(-10px); border-color: rgba(99, 102, 241, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); } .service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; color: white; } .service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; margin-bottom: 1rem; } .service-card p { color: var(--gray); line-height: 1.7; } /* Stats Section */ .stats { padding: 80px 5%; background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1)); position: relative; overflow: hidden; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; text-align: center; } .stat-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; } .stat-item p { color: var(--gray); font-weight: 500; } /* Why Choose Us */ .why-us { padding: 100px 5%; } .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1400px; margin: 0 auto; align-items: center; } .why-image { position: relative; } .why-image img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); } .experience-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 2rem; border-radius: 20px; text-align: center; box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3); } .experience-badge h4 { font-size: 2.5rem; font-family: 'Space Grotesk', sans-serif; } .experience-badge p { font-size: 0.9rem; opacity: 0.9; } .why-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; } .why-content h2 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .why-content > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.8; } .feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; } .feature-list li { display: flex; align-items: center; gap: 1rem; font-weight: 500; } .feature-list i { width: 40px; height: 40px; background: rgba(99, 102, 241, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); } /* Technologies */ .tech-stack { padding: 80px 5%; background: var(--dark); } .tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 1000px; margin: 0 auto; } .tech-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 0.8rem; transition: all 0.3s; } .tech-item:hover { border-color: var(--primary); transform: translateY(-5px); } .tech-item i { font-size: 1.5rem; color: var(--secondary); } /* CTA Section */ .cta-section { padding: 100px 5%; position: relative; overflow: hidden; } .cta-container { max-width: 1200px; margin: 0 auto; background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2)); border: 1px solid var(--glass-border); border-radius: 32px; padding: 4rem; text-align: center; position: relative; overflow: hidden; } .cta-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%); animation: rotate 20s linear infinite; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .cta-content { position: relative; z-index: 2; } .cta-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .cta-content p { color: var(--gray); font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } /* Contact Section */ .contact { padding: 100px 5%; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1400px; margin: 0 auto; } .contact-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; } .contact-info > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.8; } .contact-details { display: flex; flex-direction: column; gap: 1.5rem; } .contact-item { display: flex; align-items: center; gap: 1rem; } .contact-item i { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; } .contact-item div h4 { font-size: 1rem; margin-bottom: 0.2rem; } .contact-item div p { color: var(--gray); font-size: 0.95rem; } .contact-form { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 12px; color: var(--light); font-family: inherit; font-size: 1rem; transition: all 0.3s; } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); } .form-group textarea { resize: vertical; min-height: 120px; } /* Footer */ .footer { background: var(--dark); border-top: 1px solid var(--glass-border); padding: 60px 5% 30px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1400px; margin: 0 auto 3rem; } .footer-brand .logo { margin-bottom: 1rem; display: inline-flex; } .footer-brand p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; } .social-links { display: flex; gap: 1rem; } .social-links a { width: 40px; height: 40px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all 0.3s; } .social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); } .footer-links h4 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 1.5rem; font-size: 1.1rem; } .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; } .footer-links a { color: var(--gray); text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--primary); } .footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 2rem; text-align: center; color: var(--gray); font-size: 0.9rem; } /* WhatsApp Floating Button */ .whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; } .whatsapp-btn { width: 60px; height: 60px; background: linear-gradient(135deg, #25d366, #128c7e); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); cursor: pointer; border: none; transition: all 0.3s; position: relative; text-decoration: none; } .whatsapp-btn:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); } .whatsapp-btn::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25d366; animation: pulse 2s infinite; z-index: -1; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } } .whatsapp-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--dark); color: white; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s; border: 1px solid var(--glass-border); } .whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: 75px; } /* WhatsApp Chat Widget */ .whatsapp-widget { position: fixed; bottom: 100px; right: 30px; width: 350px; background: var(--dark); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); z-index: 998; transform: translateY(20px); opacity: 0; pointer-events: none; transition: all 0.4s ease; } .whatsapp-widget.active { transform: translateY(0); opacity: 1; pointer-events: all; } .widget-header { background: linear-gradient(135deg, #25d366, #128c7e); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; } .widget-header img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid white; } .widget-header div h4 { color: white; font-size: 1.1rem; } .widget-header div p { color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; } .widget-body { padding: 1.5rem; background: #0b141a; min-height: 200px; } .chat-bubble { background: #202c33; padding: 1rem; border-radius: 0 12px 12px 12px; margin-bottom: 1rem; color: white; font-size: 0.9rem; line-height: 1.6; max-width: 90%; } .chat-bubble.typing::after { content: '...'; animation: typing 1.5s infinite; } @keyframes typing { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } } .widget-footer { padding: 1rem; background: var(--dark); border-top: 1px solid var(--glass-border); } .widget-input-group { display: flex; gap: 0.5rem; } .widget-input { flex: 1; padding: 0.8rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 20px; color: white; font-family: inherit; outline: none; } .widget-input::placeholder { color: var(--gray); } .widget-send { width: 40px; height: 40px; background: #25d366; border: none; border-radius: 50%; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; } .widget-send:hover { background: #128c7e; } .close-widget { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; opacity: 0.8; transition: opacity 0.3s; } .close-widget:hover { opacity: 1; } /* Responsive */ @media (max-width: 1024px) { .hero-content { grid-template-columns: 1fr; text-align: center; } .hero-text p { margin-left: auto; margin-right: auto; } .hero-btns { justify-content: center; } .hero-visual { order: -1; } .why-grid, .contact-grid { grid-template-columns: 1fr; } .why-image { order: -1; } .footer-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--glass-border); } .nav-links.active { display: flex; } .mobile-menu-btn { display: block; } .floating-card { display: none; } .stats-grid { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-links { justify-content: center; } .cta-container { padding: 2rem; } .whatsapp-widget { width: calc(100% - 40px); right: 20px; left: 20px; } } /* Scroll Reveal Animation */ .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; } .reveal.active { opacity: 1; transform: translateY(0); } /* Gradient Text Animation */ .gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-shift 5s ease infinite; } @keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } </style> <base target="_blank"> </head> <body> <!-- Navigation --> <nav class="navbar" id="navbar"> <div class="nav-container"> <a href="#" class="logo"> <i class="fas fa-globe"></i> Jeevant Global </a> <ul class="nav-links" id="navLinks"> <li><a href="#home">Home</a></li> <li><a href="#home">About us</a></li> <li><a href="#services">Services</a></li> <li><a href="#services">solutions</a></li> <li><a href="#services">News</a></li> <li><a href="#why-us">Why Us</a></li> <li><a href="#why-us">Blogs</a></li> <li><a href="#contact">Contact</a></li> </ul> <button class="mobile-menu-btn" id="mobileMenuBtn"> <i class="fas fa-bars"></i> </button> </div> </nav> <!-- Hero Section --> <section class="hero" id="home"> <div class="hero-bg"></div> <div class="particles" id="particles"></div> <div class="hero-content"> <div class="hero-text reveal"> <h1>Transforming Business with <span>AI & Machine Learning</span></h1> <p>We deliver cutting-edge IT consulting and AI solutions that drive innovation, optimize operations, and accelerate your digital transformation journey.</p> <div class="hero-btns"> <a href="#contact" class="btn btn-primary"> <i class="fas fa-rocket"></i> Start Your Project </a> <a href="https://wa.me/1234567890?text=Hi%20Jeevant%20Global,%20I'm%20interested%20in%20your%20AI%20consulting%20services" class="btn btn-whatsapp" target="_blank"> <i class="fab fa-whatsapp"></i> Chat on WhatsApp </a> </div> </div> <div class="hero-visual reveal"> <div class="hero-image-container"> <img src="https://images.unsplash.com/photo-1677442136019-21780ecad995?w=600&h=500&fit=crop" alt="AI Technology" class="hero-image"> <div class="floating-card"> <i class="fas fa-brain"></i> <span>AI Solutions</span> </div> <div class="floating-card"> <i class="fas fa-chart-line"></i> <span>Data Analytics</span> </div> <div class="floating-card"> <i class="fas fa-cloud"></i> <span>Cloud Services</span> </div> </div> </div> </div> </section> <!-- Services Section --> <section class="services" id="services"> <div class="section-header reveal"> <h2>Our <span>Expertise</span></h2> <p>Comprehensive IT and AI solutions tailored to transform your business operations and drive sustainable growth.</p> </div> <div class="services-grid"> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-brain"></i> </div> <h3>Machine Learning</h3> <p>Custom ML models for predictive analytics, pattern recognition, and intelligent automation that learn and improve over time.</p> </div> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-robot"></i> </div> <h3>AI Consulting</h3> <p>Strategic AI roadmap development, feasibility studies, and implementation guidance for enterprise-wide AI adoption.</p> </div> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-database"></i> </div> <h3>Data Engineering</h3> <p>End-to-end data pipeline architecture, ETL processes, and big data solutions for actionable business intelligence.</p> </div> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-cloud"></i> </div> <h3>Cloud Solutions</h3> <p>Scalable cloud infrastructure design, migration services, and multi-cloud management for optimal performance.</p> </div> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-shield-alt"></i> </div> <h3>Cybersecurity</h3> <p>AI-powered threat detection, security audits, and compliance frameworks to protect your digital assets.</p> </div> <div class="service-card reveal"> <div class="service-icon"> <i class="fas fa-mobile-alt"></i> </div> <h3>Digital Transformation</h3> <p>Holistic digital strategy, process automation, and technology modernization to future-proof your business.</p> </div> </div> </section> <!-- Stats Section --> <section class="stats"> <div class="stats-grid reveal"> <div class="stat-item"> <h3>150+</h3> <p>Projects Delivered</p> </div> <div class="stat-item"> <h3>50+</h3> <p>AI Models Deployed</p> </div> <div class="stat-item"> <h3>98%</h3> <p>Client Satisfaction</p> </div> <div class="stat-item"> <h3>24/7</h3> <p>Support Available</p> </div> </div> </section> <!-- Why Choose Us --> <section class="why-us" id="why-us"> <div class="why-grid"> <div class="why-content reveal"> <h2>Why Choose <span>Jeevant Global</span>?</h2> <p>We combine deep technical expertise with business acumen to deliver solutions that create real value. Our team of data scientists, engineers, and consultants work collaboratively to ensure your success.</p> <ul class="feature-list"> <li> <i class="fas fa-check"></i> <span>Industry-leading AI/ML expertise</span> </li> <li> <i class="fas fa-check"></i> <span>Customized solutions for your needs</span> </li> <li> <i class="fas fa-check"></i> <span>Agile development methodology</span> </li> <li> <i class="fas fa-check"></i> <span>End-to-end project support</span> </li> <li> <i class="fas fa-check"></i> <span>Scalable and future-proof architecture</span> </li> </ul> </div> <div class="why-image reveal"> <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=600&h=500&fit=crop" alt="Data Analytics"> <div class="experience-badge"> <h4>10+</h4> <p>Years of Excellence</p> </div> </div> </div> </section> <!-- Tech Stack --> <section class="tech-stack"> <div class="section-header reveal"> <h2>Technologies We <span>Master</span></h2> <p>We leverage the latest tools and frameworks to build robust solutions.</p> </div> <div class="tech-grid reveal"> <div class="tech-item"> <i class="fab fa-python"></i> <span>Python</span> </div> <div class="tech-item"> <i class="fas fa-brain"></i> <span>TensorFlow</span> </div> <div class="tech-item"> <i class="fas fa-fire"></i> <span>PyTorch</span> </div> <div class="tech-item"> <i class="fab fa-aws"></i> <span>AWS</span> </div> <div class="tech-item"> <i class="fab fa-google"></i> <span>GCP</span> </div> <div class="tech-item"> <i class="fab fa-docker"></i> <span>Docker</span> </div> <div class="tech-item"> <i class="fas fa-database"></i> <span>SQL/NoSQL</span> </div> <div class="tech-item"> <i class="fas fa-cogs"></i> <span>MLOps</span> </div> </div> </section> <!-- CTA Section --> <section class="cta-section"> <div class="cta-container reveal"> <div class="cta-content"> <h2>Ready to <span class="gradient-text">Transform</span> Your Business?</h2> <p>Let's discuss how our AI and IT solutions can help you achieve your business goals faster and more efficiently.</p> <div class="cta-buttons"> <a href="https://wa.me/1234567890?text=Hi%20Jeevant%20Global,%20I%20want%20to%20discuss%20a%20project" class="btn btn-whatsapp" target="_blank"> <i class="fab fa-whatsapp"></i> Start WhatsApp Chat </a> <a href="#contact" class="btn btn-outline"> <i class="fas fa-envelope"></i> Send Inquiry </a> </div> </div> </div> </section> <!-- Contact Section --> <section class="contact" id="contact"> <div class="contact-grid"> <div class="contact-info reveal"> <h2>Get In <span class="gradient-text">Touch</span></h2> <p>Have a project in mind? Reach out to us and let's create something amazing together.</p> <div class="contact-details"> <div class="contact-item"> <i class="fas fa-map-marker-alt"></i> <div> <h4>Location</h4> <p>Global Headquarters, Tech Park</p> </div> </div> <div class="contact-item"> <i class="fas fa-envelope"></i> <div> <h4>Email</h4> <p>contact@jeevantglobal.com</p> </div> </div> <div class="contact-item"> <i class="fas fa-phone"></i> <div> <h4>Phone</h4> <p>+1 (234) 567-8900</p> </div> </div> <div class="contact-item"> <i class="fab fa-whatsapp"></i> <div> <h4>WhatsApp</h4> <p>+1 (234) 567-8900</p> </div> </div> </div> </div> <div class="contact-form reveal"> <form id="contactForm"> <div class="form-group"> <label for="name">Full Name</label> <input type="text" id="name" name="name" placeholder="John Doe" required> </div> <div class="form-group"> <label for="email">Email Address</label> <input type="email" id="email" name="email" placeholder="john@example.com" required> </div> <div class="form-group"> <label for="service">Service Interested In</label> <select id="service" name="service" required> <option value="">Select a service</option> <option value="ml">Machine Learning</option> <option value="ai">AI Consulting</option> <option value="data">Data Engineering</option> <option value="cloud">Cloud Solutions</option> <option value="security">Cybersecurity</option> <option value="digital">Digital Transformation</option> </select> </div> <div class="form-group"> <label for="message">Your Message</label> <textarea id="message" name="message" placeholder="Tell us about your project..." required></textarea> </div> <button type="submit" class="btn btn-primary" style="width: 100%; justify-content: center;"> <i class="fas fa-paper-plane"></i> Send Message </button> </form> </div> </div> </section> <!-- Footer --> <footer class="footer"> <div class="footer-grid"> <div class="footer-brand"> <a href="#" class="logo"> <i class="fas fa-globe"></i> Jeevant Global </a> <p>Empowering businesses with innovative IT and AI solutions. We transform data into decisions and technology into growth.</p> <div class="social-links"> <a href="#"><i class="fab fa-linkedin-in"></i></a> <a href="#"><i class="fab fa-twitter"></i></a> <a href="#"><i class="fab fa-github"></i></a> <a href="#"><i class="fab fa-instagram"></i></a> </div> </div> <div class="footer-links"> <h4>Services</h4> <ul> <li><a href="#">Machine Learning</a></li> <li><a href="#">AI Consulting</a></li> <li><a href="#">Data Engineering</a></li> <li><a href="#">Cloud Solutions</a></li> </ul> </div> <div class="footer-links"> <h4>Company</h4> <ul> <li><a href="#">About Us</a></li> <li><a href="#">Careers</a></li> <li><a href="#">Case Studies</a></li> <li><a href="#">Blog</a></li> </ul> </div> <div class="footer-links"> <h4>Support</h4> <ul> <li><a href="#">Help Center</a></li> <li><a href="#">Privacy Policy</a></li> <li><a href="#">Terms of Service</a></li> <li><a href="#">Contact</a></li> </ul> </div> </div> <div class="footer-bottom"> <p> 2026 Jeevant Global. All rights reserved. | IT & AI Machine Learning Consulting Solutions</p> </div> </footer> <!-- WhatsApp Floating Button --> <div class="whatsapp-float"> <div class="whatsapp-tooltip">Chat with us!</div> <button class="whatsapp-btn" id="whatsappBtn"> <i class="fab fa-whatsapp"></i> </button> </div> <!-- WhatsApp Chat Widget --> <div class="whatsapp-widget" id="whatsappWidget"> <div class="widget-header"> <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?w=100&h=100&fit=crop" alt="Support"> <div> <h4>Jeevant Global Support</h4> <p>Typically replies in minutes</p> </div> <button class="close-widget" id="closeWidget"> <i class="fas fa-times"></i> </button> </div> <div class="widget-body"> <div class="chat-bubble"> 👋 Hi there! Welcome to Jeevant Global. How can we help you with your IT or AI/ML needs today? </div> <div class="chat-bubble"> Feel free to ask about our services, request a quote, or schedule a consultation. We're here to help! </div> </div> <div class="widget-footer"> <div class="widget-input-group"> <input type="text" class="widget-input" placeholder="Type a message..." id="widgetInput"> <a href="https://wa.me/1234567890" class="widget-send" target="_blank" id="widgetSend"> <i class="fas fa-paper-plane"></i> </a> </div> </div> </div> <script> // Navbar scroll effect window.addEventListener('scroll', () => { const navbar = document.getElementById('navbar'); if (window.scrollY > 50) { navbar.classList.add('scrolled'); } else { navbar.classList.remove('scrolled'); } }); // Mobile menu toggle const mobileMenuBtn = document.getElementById('mobileMenuBtn'); const navLinks = document.getElementById('navLinks'); mobileMenuBtn.addEventListener('click', () => { navLinks.classList.toggle('active'); }); // Close mobile menu on link click document.querySelectorAll('.nav-links a').forEach(link => { link.addEventListener('click', () => { navLinks.classList.remove('active'); }); }); // Particle animation const particlesContainer = document.getElementById('particles'); for (let i = 0; i < 30; i++) { const particle = document.createElement('div'); particle.className = 'particle'; particle.style.left = Math.random() * 100 + '%'; particle.style.top = Math.random() * 100 + '%'; particle.style.animationDelay = Math.random() * 15 + 's'; particle.style.animationDuration = (10 + Math.random() * 10) + 's'; particlesContainer.appendChild(particle); } // Scroll reveal animation const revealElements = document.querySelectorAll('.reveal'); const revealObserver = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('active'); } }); }, { threshold: 0.1 }); revealElements.forEach(el => revealObserver.observe(el)); // WhatsApp Widget Toggle const whatsappBtn = document.getElementById('whatsappBtn'); const whatsappWidget = document.getElementById('whatsappWidget'); const closeWidget = document.getElementById('closeWidget'); const widgetInput = document.getElementById('widgetInput'); const widgetSend = document.getElementById('widgetSend'); whatsappBtn.addEventListener('click', () => { whatsappWidget.classList.toggle('active'); }); closeWidget.addEventListener('click', () => { whatsappWidget.classList.remove('active'); }); widgetInput.addEventListener('keypress', (e) => { if (e.key === 'Enter' && widgetInput.value.trim()) { const message = encodeURIComponent(widgetInput.value); window.open(`https://wa.me/1234567890?text=${message}`, '_blank'); widgetInput.value = ''; } }); widgetSend.addEventListener('click', () => { if (widgetInput.value.trim()) { const message = encodeURIComponent(widgetInput.value); widgetSend.href = `https://wa.me/1234567890?text=${message}`; } }); // Contact form handling document.getElementById('contactForm').addEventListener('submit', (e) => { e.preventDefault(); alert('Thank you for your message! We will get back to you soon.'); e.target.reset(); }); // Smooth scroll for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); </script> </body> </html>
Return