|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>VisionOS | Premium EV Rentals</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); |
|
|
|
body { |
|
font-family: 'Inter', sans-serif; |
|
background-color: #0a0a0a; |
|
color: #f8f8f8; |
|
overflow-x: hidden; |
|
} |
|
|
|
.hero-gradient { |
|
background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(20,30,50,0.7) 100%); |
|
} |
|
|
|
.card-hover-effect { |
|
transition: all 0.3s ease; |
|
transform-style: preserve-3d; |
|
} |
|
|
|
.card-hover-effect:hover { |
|
transform: translateY(-10px) rotateX(5deg); |
|
box-shadow: 0 25px 50px -12px rgba(0, 150, 255, 0.25); |
|
} |
|
|
|
.blue-glow { |
|
box-shadow: 0 0 15px rgba(56, 182, 255, 0.7); |
|
} |
|
|
|
.blue-glow-text { |
|
text-shadow: 0 0 8px rgba(56, 182, 255, 0.7); |
|
} |
|
|
|
.button-pulse { |
|
animation: pulse 2s infinite; |
|
} |
|
|
|
@keyframes pulse { |
|
0% { |
|
box-shadow: 0 0 0 0 rgba(56, 182, 255, 0.7); |
|
} |
|
70% { |
|
box-shadow: 0 0 0 10px rgba(56, 182, 255, 0); |
|
} |
|
100% { |
|
box-shadow: 0 0 0 0 rgba(56, 182, 255, 0); |
|
} |
|
} |
|
|
|
.smoke-overlay { |
|
position: absolute; |
|
width: 100%; |
|
height: 100%; |
|
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjEwIiBoZWlnaHQ9IjEwIiBmaWxsPSJyZ2JhKDU2LDE4MiwyNTUsMC4wNSkiPjwvcmVjdD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4='); |
|
opacity: 0.3; |
|
pointer-events: none; |
|
} |
|
|
|
.search-glow:focus { |
|
box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.5); |
|
} |
|
|
|
.nav-link { |
|
position: relative; |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: -2px; |
|
left: 0; |
|
background-color: #38b6ff; |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.testimonial-card { |
|
background: rgba(20, 30, 50, 0.5); |
|
backdrop-filter: blur(10px); |
|
border: 1px solid rgba(56, 182, 255, 0.2); |
|
} |
|
|
|
.chat-bubble { |
|
position: fixed; |
|
bottom: 30px; |
|
right: 30px; |
|
width: 60px; |
|
height: 60px; |
|
background: linear-gradient(135deg, #38b6ff, #2a8bff); |
|
border-radius: 50%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
cursor: pointer; |
|
z-index: 100; |
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.chat-bubble:hover { |
|
transform: scale(1.1); |
|
} |
|
|
|
.chat-window { |
|
position: fixed; |
|
bottom: 100px; |
|
right: 30px; |
|
width: 350px; |
|
max-height: 500px; |
|
background: rgba(15, 20, 30, 0.95); |
|
border-radius: 15px; |
|
border: 1px solid rgba(56, 182, 255, 0.3); |
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); |
|
overflow: hidden; |
|
transform: scale(0); |
|
transform-origin: bottom right; |
|
transition: all 0.3s ease; |
|
z-index: 101; |
|
} |
|
|
|
.chat-window.active { |
|
transform: scale(1); |
|
} |
|
|
|
.chat-header { |
|
background: linear-gradient(90deg, #1a2a4a, #0f1a30); |
|
padding: 15px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
} |
|
|
|
.chat-messages { |
|
padding: 15px; |
|
height: 350px; |
|
overflow-y: auto; |
|
} |
|
|
|
.message { |
|
margin-bottom: 15px; |
|
max-width: 80%; |
|
padding: 10px 15px; |
|
border-radius: 15px; |
|
position: relative; |
|
} |
|
|
|
.user-message { |
|
background: rgba(56, 182, 255, 0.2); |
|
border: 1px solid rgba(56, 182, 255, 0.3); |
|
margin-left: auto; |
|
border-bottom-right-radius: 5px; |
|
} |
|
|
|
.bot-message { |
|
background: rgba(30, 40, 60, 0.7); |
|
border: 1px solid rgba(56, 182, 255, 0.2); |
|
margin-right: auto; |
|
border-bottom-left-radius: 5px; |
|
} |
|
|
|
.chat-input { |
|
display: flex; |
|
padding: 15px; |
|
background: rgba(15, 20, 30, 0.9); |
|
border-top: 1px solid rgba(56, 182, 255, 0.1); |
|
} |
|
|
|
.chat-input input { |
|
flex: 1; |
|
background: rgba(30, 40, 60, 0.7); |
|
border: 1px solid rgba(56, 182, 255, 0.2); |
|
padding: 10px 15px; |
|
border-radius: 25px; |
|
color: white; |
|
outline: none; |
|
} |
|
|
|
.chat-input button { |
|
background: #38b6ff; |
|
border: none; |
|
color: white; |
|
width: 40px; |
|
height: 40px; |
|
border-radius: 50%; |
|
margin-left: 10px; |
|
cursor: pointer; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.chat-input button:hover { |
|
background: #2a8bff; |
|
} |
|
|
|
|
|
::-webkit-scrollbar { |
|
width: 8px; |
|
} |
|
|
|
::-webkit-scrollbar-track { |
|
background: rgba(20, 30, 50, 0.5); |
|
} |
|
|
|
::-webkit-scrollbar-thumb { |
|
background: rgba(56, 182, 255, 0.5); |
|
border-radius: 4px; |
|
} |
|
|
|
::-webkit-scrollbar-thumb:hover { |
|
background: rgba(56, 182, 255, 0.7); |
|
} |
|
|
|
|
|
.modal-overlay { |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
background: rgba(0, 0, 0, 0.8); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
z-index: 1000; |
|
opacity: 0; |
|
pointer-events: none; |
|
transition: opacity 0.3s ease; |
|
} |
|
|
|
.modal-overlay.active { |
|
opacity: 1; |
|
pointer-events: all; |
|
} |
|
|
|
.modal-content { |
|
background: linear-gradient(135deg, #0f1a30, #1a2a4a); |
|
border-radius: 15px; |
|
width: 90%; |
|
max-width: 600px; |
|
max-height: 90vh; |
|
overflow-y: auto; |
|
transform: scale(0.9); |
|
transition: transform 0.3s ease; |
|
border: 1px solid rgba(56, 182, 255, 0.3); |
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); |
|
} |
|
|
|
.modal-overlay.active .modal-content { |
|
transform: scale(1); |
|
} |
|
|
|
.modal-header { |
|
padding: 20px; |
|
border-bottom: 1px solid rgba(56, 182, 255, 0.2); |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
} |
|
|
|
.modal-body { |
|
padding: 20px; |
|
} |
|
|
|
.modal-footer { |
|
padding: 20px; |
|
border-top: 1px solid rgba(56, 182, 255, 0.2); |
|
display: flex; |
|
justify-content: flex-end; |
|
} |
|
|
|
.close-modal { |
|
background: none; |
|
border: none; |
|
color: #38b6ff; |
|
font-size: 24px; |
|
cursor: pointer; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.close-modal:hover { |
|
color: #2a8bff; |
|
} |
|
|
|
|
|
.form-group { |
|
margin-bottom: 20px; |
|
} |
|
|
|
.form-group label { |
|
display: block; |
|
margin-bottom: 8px; |
|
color: #38b6ff; |
|
} |
|
|
|
.form-group input, .form-group select, .form-group textarea { |
|
width: 100%; |
|
padding: 12px 15px; |
|
background: rgba(30, 40, 60, 0.7); |
|
border: 1px solid rgba(56, 182, 255, 0.2); |
|
border-radius: 8px; |
|
color: white; |
|
outline: none; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { |
|
border-color: #38b6ff; |
|
box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.2); |
|
} |
|
|
|
|
|
@media (max-width: 768px) { |
|
.hero-content { |
|
padding-top: 100px; |
|
} |
|
|
|
.vehicle-grid { |
|
grid-template-columns: repeat(1, 1fr); |
|
} |
|
|
|
.chat-window { |
|
width: 90%; |
|
right: 5%; |
|
} |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<nav class="fixed w-full bg-black bg-opacity-80 backdrop-filter backdrop-blur-lg z-50 border-b border-gray-800"> |
|
<div class="container mx-auto px-6 py-4"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center"> |
|
<div class="text-2xl font-bold text-white"> |
|
<span class="text-blue-400">VISION</span>OS |
|
</div> |
|
</div> |
|
<div class="hidden md:flex space-x-8"> |
|
<a href="#" class="nav-link text-white hover:text-blue-400 transition duration-300">Home</a> |
|
<a href="#vehicles" class="nav-link text-white hover:text-blue-400 transition duration-300">Vehicles</a> |
|
<a href="#about" class="nav-link text-white hover:text-blue-400 transition duration-300">About</a> |
|
<a href="#testimonials" class="nav-link text-white hover:text-blue-400 transition duration-300">Testimonials</a> |
|
<a href="#contact" class="nav-link text-white hover:text-blue-400 transition duration-300">Contact</a> |
|
</div> |
|
<div class="flex items-center space-x-4"> |
|
<button class="hidden md:block px-6 py-2 bg-gradient-to-r from-blue-500 to-blue-600 text-white rounded-full hover:from-blue-600 hover:to-blue-700 transition duration-300"> |
|
Sign In |
|
</button> |
|
<button class="md:hidden text-white"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section class="relative h-screen flex items-center justify-center overflow-hidden"> |
|
<div class="absolute inset-0 bg-black opacity-70"></div> |
|
<div class="absolute inset-0 smoke-overlay"></div> |
|
<div class="absolute inset-0 flex items-center justify-center"> |
|
<div class="w-full h-full bg-gradient-to-b from-transparent via-black/70 to-black/90"></div> |
|
</div> |
|
|
|
<div class="container mx-auto px-6 relative z-10 hero-content"> |
|
<div class="max-w-4xl mx-auto text-center"> |
|
<h1 class="text-5xl md:text-7xl font-bold mb-6 text-white blue-glow-text"> |
|
<span class="text-blue-400">Rent Your Dream</span> Electric Vehicle |
|
</h1> |
|
<p class="text |
|
</html> |