| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Discover Kyrgyzstan | Explore Nature. Feel Freedom.</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
| </head> |
| <body class="font-sans bg-white text-gray-800"> |
| <custom-navbar></custom-navbar> |
| <weather-widget></weather-widget> |
| |
| <div id="hero" class="relative h-screen flex items-center justify-center overflow-hidden"> |
| <div class="absolute inset-0 bg-black opacity-50 z-10"></div> |
| <div class="relative z-20 text-center px-4"> |
| <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Discover Kyrgyzstan</h1> |
| <p class="text-xl md:text-2xl text-white mb-8">Explore nature. Feel freedom.</p> |
| <div class="flex gap-4 justify-center"> |
| <a href="#destinations" class="bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-full font-semibold transition duration-300">Explore</a> |
| <a href="#tours" class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-emerald-800 transition duration-300">Book a Tour</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <section id="destinations" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-50"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-3xl font-bold text-center mb-4">Popular Destinations</h2> |
| <p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Discover the breathtaking landscapes of Kyrgyzstan</p> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300"> |
| <img src="http://static.photos/nature/640x360/1" alt="Issyk-Kul Lake" class="w-full h-64 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Issyk-Kul Lake</h3> |
| <p class="text-gray-600 mb-4">The second largest alpine lake in the world, known for its crystal clear water and sandy beaches.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">From $50</span> |
| <a href="#" class="text-emerald-600 hover:text-emerald-800 font-medium">Explore →</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300"> |
| <img src="http://static.photos/nature/640x360/2" alt="Karakol Valley" class="w-full h-64 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Karakol Valley</h3> |
| <p class="text-gray-600 mb-4">Gateway to stunning mountain ranges, hot springs, and the famous Karakol Ski Resort.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">From $75</span> |
| <a href="#" class="text-emerald-600 hover:text-emerald-800 font-medium">Explore →</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300"> |
| <img src="http://static.photos/nature/640x360/3" alt="Son-Kul Lake" class="w-full h-64 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Son-Kul Lake</h3> |
| <p class="text-gray-600 mb-4">A high alpine lake where nomadic shepherds bring their herds for summer pastures.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">From $60</span> |
| <a href="#" class="text-emerald-600 hover:text-emerald-800 font-medium">Explore →</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="tours" class="py-20 px-4 md:px-10 lg:px-20 bg-white"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-3xl font-bold text-center mb-4">Tours & Activities</h2> |
| <p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Experience the authentic nomadic culture</p> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> |
| |
| <div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300 flex flex-col md:flex-row"> |
| <img src="http://static.photos/travel/640x360/1" alt="Hiking" class="w-full md:w-1/2 h-64 md:h-auto object-cover"> |
| <div class="p-6 md:w-1/2"> |
| <h3 class="text-xl font-bold mb-2">Mountain Hiking</h3> |
| <p class="text-gray-600 mb-4">Explore pristine alpine landscapes with experienced guides.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">$120/person</span> |
| <a href="booking.html" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-full text-sm font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300 flex flex-col md:flex-row"> |
| <img src="http://static.photos/travel/640x360/2" alt="Horse Riding" class="w-full md:w-1/2 h-64 md:h-auto object-cover"> |
| <div class="p-6 md:w-1/2"> |
| <h3 class="text-xl font-bold mb-2">Horse Riding</h3> |
| <p class="text-gray-600 mb-4">Experience the traditional way of traveling through Kyrgyz mountains.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">$90/person</span> |
| <a href="booking.html" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-full text-sm font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300 flex flex-col md:flex-row"> |
| <img src="http://static.photos/travel/640x360/3" alt="Yurt Camping" class="w-full md:w-1/2 h-64 md:h-auto object-cover"> |
| <div class="p-6 md:w-1/2"> |
| <h3 class="text-xl font-bold mb-2">Yurt Camping</h3> |
| <p class="text-gray-600 mb-4">Spend a night in a traditional nomadic yurt under the stars.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">$65/person</span> |
| <a href="booking.html" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-full text-sm font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition duration-300 flex flex-col md:flex-row"> |
| <img src="http://static.photos/food/640x360/1" alt="Local Food Experience" class="w-full md:w-1/2 h-64 md:h-auto object-cover"> |
| <div class="p-6 md:w-1/2"> |
| <h3 class="text-xl font-bold mb-2">Local Food Experience</h3> |
| <p class="text-gray-600 mb-4">Taste authentic Kyrgyz cuisine in a traditional setting.</p> |
| <div class="flex justify-between items-center"> |
| <span class="text-emerald-600 font-semibold">$45/person</span> |
| <a href="booking.html" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-full text-sm font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="map" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-50"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-3xl font-bold text-center mb-4">Map & Routes</h2> |
| <p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Plan your journey through Kyrgyzstan's most scenic routes</p> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="h-96 bg-gray-200 flex items-center justify-center"> |
| <p class="text-gray-500">Interactive Map Coming Soon</p> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-4">Popular Routes</h3> |
| <ul class="grid grid-cols-1 md:grid-cols-3 gap-4"> |
| <li class="flex items-center"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="map-pin" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <span>Bishkek → Issyk-Kul</span> |
| </li> |
| <li class="flex items-center"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="map-pin" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <span>Karakol → Jeti-Oguz</span> |
| </li> |
| <li class="flex items-center"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="map-pin" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <span>Son-Kul → Tash Rabat</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 px-4 md:px-10 lg:px-20 bg-white"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-3xl font-bold text-center mb-4">Contact & Booking</h2> |
| <p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Get in touch with our local experts</p> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> |
| <div> |
| <form class="space-y-6"> |
| <div> |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label> |
| <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition duration-300"> |
| </div> |
| <div> |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> |
| <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition duration-300"> |
| </div> |
| <div> |
| <label for="tour" class="block text-sm font-medium text-gray-700 mb-1">Tour Interest</label> |
| <select id="tour" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition duration-300"> |
| <option value="">Select a tour</option> |
| <option value="hiking">Mountain Hiking</option> |
| <option value="horse">Horse Riding</option> |
| <option value="yurt">Yurt Camping</option> |
| <option value="food">Local Food Experience</option> |
| </select> |
| </div> |
| <div> |
| <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> |
| <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition duration-300"></textarea> |
| </div> |
| <button type="submit" class="w-full bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-lg font-semibold transition duration-300">Send Inquiry</button> |
| </form> |
| </div> |
| |
| <div class="flex flex-col justify-between"> |
| <div> |
| <h3 class="text-xl font-bold mb-4">Contact Information</h3> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="mail" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Email</h4> |
| <p class="text-gray-600">info@discoverkyrgyzstan.com</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="phone" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Phone</h4> |
| <p class="text-gray-600">+996 555 123456</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-emerald-100 rounded-full p-2 mr-3"> |
| <i data-feather="map-pin" class="text-emerald-600 w-5 h-5"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Office</h4> |
| <p class="text-gray-600">Bishkek, Kyrgyzstan</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-8"> |
| <h3 class="text-xl font-bold mb-4">Connect With Us</h3> |
| <div class="flex space-x-4"> |
| <a href="#" class="bg-emerald-100 hover:bg-emerald-200 text-emerald-600 rounded-full p-3 transition duration-300"> |
| <i data-feather="message-circle" class="w-5 h-5"></i> |
| </a> |
| <a href="#" class="bg-emerald-100 hover:bg-emerald-200 text-emerald-600 rounded-full p-3 transition duration-300"> |
| <i data-feather="instagram" class="w-5 h-5"></i> |
| </a> |
| <a href="#" class="bg-emerald-100 hover:bg-emerald-200 text-emerald-600 rounded-full p-3 transition duration-300"> |
| <i data-feather="send" class="w-5 h-5"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="components/language-switcher.js"></script> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| VANTA.GLOBE({ |
| el: "#hero", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x38b2ac, |
| backgroundColor: 0xffffff, |
| size: 0.8 |
| }); |
| </script> |
| </body> |
| </html> |