|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>IBA H SERVICE - Business Solutions</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> |
|
|
|
@keyframes fadeIn { |
|
from { opacity: 0; transform: translateY(20px); } |
|
to { opacity: 1; transform: translateY(0); } |
|
} |
|
|
|
@keyframes float { |
|
0% { transform: translateY(0px); } |
|
50% { transform: translateY(-10px); } |
|
100% { transform: translateY(0px); } |
|
} |
|
|
|
.animate-fade-in { |
|
animation: fadeIn 0.8s ease-out forwards; |
|
} |
|
|
|
.animate-float { |
|
animation: float 3s ease-in-out infinite; |
|
} |
|
|
|
.delay-100 { animation-delay: 0.1s; } |
|
.delay-200 { animation-delay: 0.2s; } |
|
.delay-300 { animation-delay: 0.3s; } |
|
|
|
|
|
::-webkit-scrollbar { |
|
width: 8px; |
|
} |
|
|
|
::-webkit-scrollbar-track { |
|
background: #f1f1f1; |
|
} |
|
|
|
::-webkit-scrollbar-thumb { |
|
background: #3b82f6; |
|
border-radius: 4px; |
|
} |
|
|
|
|
|
.mobile-menu { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
|
|
.gradient-text { |
|
background: linear-gradient(90deg, #3b82f6, #8b5cf6); |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
color: transparent; |
|
} |
|
|
|
|
|
.btn-glow:hover { |
|
box-shadow: 0 0 15px rgba(59, 130, 246, 0.7); |
|
} |
|
|
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
transition: all 0.3s ease; |
|
} |
|
</style> |
|
</head> |
|
<body class="font-sans bg-gray-50 text-gray-800"> |
|
|
|
<nav class="bg-white shadow-lg sticky top-0 z-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-16"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<i class="fas fa-handshake text-blue-500 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold gradient-text">IBA H SERVICE</span> |
|
</div> |
|
<div class="hidden md:block"> |
|
<div class="ml-10 flex items-baseline space-x-4"> |
|
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-blue-600 bg-blue-50">Home</a> |
|
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Services</a> |
|
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Solutions</a> |
|
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Pricing</a> |
|
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Contact</a> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="hidden md:flex items-center"> |
|
<button class="px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 btn-glow"> |
|
Get Started |
|
</button> |
|
</div> |
|
<div class="-mr-2 flex items-center md:hidden"> |
|
<button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500"> |
|
<span class="sr-only">Open main menu</span> |
|
<i class="fas fa-bars"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="mobile-menu hidden md:hidden bg-white border-t border-gray-200"> |
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-blue-600 bg-blue-50">Home</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Services</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Solutions</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Pricing</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Contact</a> |
|
<button class="w-full mt-2 px-4 py-2 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 btn-glow"> |
|
Get Started |
|
</button> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<div class="relative bg-white overflow-hidden"> |
|
<div class="max-w-7xl mx-auto"> |
|
<div class="relative z-10 pb-8 bg-white sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32"> |
|
<main class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28"> |
|
<div class="sm:text-center lg:text-left"> |
|
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl animate-fade-in"> |
|
<span class="block">Premium Business</span> |
|
<span class="block gradient-text">Services & Solutions</span> |
|
</h1> |
|
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0 animate-fade-in delay-100"> |
|
IBA H SERVICE delivers exceptional business solutions tailored to your unique needs. Experience unparalleled service quality. |
|
</p> |
|
<div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start animate-fade-in delay-200"> |
|
<div class="rounded-md shadow"> |
|
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10 btn-glow"> |
|
Get started |
|
</a> |
|
</div> |
|
<div class="mt-3 sm:mt-0 sm:ml-3"> |
|
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-blue-100 hover:bg-blue-200 md:py-4 md:text-lg md:px-10"> |
|
<i class="fas fa-play-circle mr-2"></i> Watch demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
</div> |
|
</div> |
|
<div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2 hidden lg:block"> |
|
<img class="h-56 w-full object-cover sm:h-72 md:h-96 lg:w-full lg:h-full animate-float" src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80" alt="Business meeting"> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="py-12 bg-gray-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Advantages</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
|
Why Choose IBA H SERVICE |
|
</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
We combine innovation with reliability to deliver outstanding results. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-10"> |
|
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10"> |
|
<div class="relative group bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all duration-300 animate-fade-in delay-100 card-hover"> |
|
<div class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-purple-500 rounded-lg blur opacity-25 group-hover:opacity-75 transition duration-1000 group-hover:duration-200"></div> |
|
<div class="relative flex items-start"> |
|
<div class="flex-shrink-0 bg-blue-50 p-2 rounded-md"> |
|
<i class="fas fa-star text-blue-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Premium Quality</h3> |
|
<p class="mt-1 text-sm text-gray-500"> |
|
We deliver only the highest quality services with meticulous attention to detail. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="relative group bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all duration-300 animate-fade-in delay-200 card-hover"> |
|
<div class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-purple-500 rounded-lg blur opacity-25 group-hover:opacity-75 transition duration-1000 group-hover:duration-200"></div> |
|
<div class="relative flex items-start"> |
|
<div class="flex-shrink-0 bg-blue-50 p-2 rounded-md"> |
|
<i class="fas fa-user-tie text-blue-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Expert Team</h3> |
|
<p class="mt-1 text-sm text-gray-500"> |
|
Our professionals have years of experience and industry-specific knowledge. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="relative group bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all duration-300 animate-fade-in delay-300 card-hover"> |
|
<div class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-purple-500 rounded-lg blur opacity-25 group-hover:opacity-75 transition duration-1000 group-hover:duration-200"></div> |
|
<div class="relative flex items-start"> |
|
<div class="flex-shrink-0 bg-blue-50 p-2 rounded-md"> |
|
<i class="fas fa-lightbulb text-blue-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Innovative Approach</h3> |
|
<p class="mt-1 text-sm text-gray-500"> |
|
We constantly innovate to provide cutting-edge solutions for your business. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="relative group bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all duration-300 animate-fade-in delay-400 card-hover"> |
|
<div class="absolute -inset-0.5 bg-gradient-to-r from-blue-500 to-purple-500 rounded-lg blur opacity-25 group-hover:opacity-75 transition duration-1000 group-hover:duration-200"></div> |
|
<div class="relative flex items-start"> |
|
<div class="flex-shrink-0 bg-blue-50 p-2 rounded-md"> |
|
<i class="fas fa-headset text-blue-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Dedicated Support</h3> |
|
<p class="mt-1 text-sm text-gray-500"> |
|
Our customer support team is available 24/7 to assist you with any questions. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-blue-600"> |
|
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8 lg:py-20"> |
|
<div class="max-w-4xl mx-auto text-center"> |
|
<h2 class="text-3xl font-extrabold text-white sm:text-4xl"> |
|
Trusted by Businesses Worldwide |
|
</h2> |
|
<p class="mt-3 text-xl text-blue-100 sm:mt-4"> |
|
IBA H SERVICE has helped companies across industries achieve their goals. |
|
</p> |
|
</div> |
|
<div class="mt-10 text-center sm:max-w-3xl sm:mx-auto sm:grid sm:grid-cols-3 sm:gap-8"> |
|
<div class="animate-fade-in delay-100"> |
|
<div class="text-5xl font-extrabold text-white"> |
|
500+ |
|
</div> |
|
<div class="mt-2 text-base font-medium text-blue-100"> |
|
Satisfied Clients |
|
</div> |
|
</div> |
|
<div class="mt-10 sm:mt-0 animate-fade-in delay-200"> |
|
<div class="text-5xl font-extrabold text-white"> |
|
95% |
|
</div> |
|
<div class="mt-2 text-base font-medium text-blue-100"> |
|
Retention Rate |
|
</div> |
|
</div> |
|
<div class="mt-10 sm:mt-0 animate-fade-in delay-300"> |
|
<div class="text-5xl font-extrabold text-white"> |
|
24/7 |
|
</div> |
|
<div class="mt-2 text-base font-medium text-blue-100"> |
|
Support Availability |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white py-16 lg:py-24"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Client Testimonials</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
|
What Our Clients Say |
|
</p> |
|
</div> |
|
|
|
<div class="mt-16 grid gap-8 lg:grid-cols-3"> |
|
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow duration-300 animate-fade-in delay-100 card-hover"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson"> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">Sarah Johnson</div> |
|
<div class="text-blue-600">CEO, TechSolutions</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 text-gray-600"> |
|
<p>"IBA H SERVICE transformed our operations. Their innovative approach helped us increase efficiency by 40% in just six months."</p> |
|
</div> |
|
<div class="mt-4 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow duration-300 animate-fade-in delay-200 card-hover"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen"> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">Michael Chen</div> |
|
<div class="text-blue-600">Director, Global Corp</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 text-gray-600"> |
|
<p>"The expertise of IBA H SERVICE's team is unmatched. They delivered solutions that perfectly matched our complex requirements."</p> |
|
</div> |
|
<div class="mt-4 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star-half-alt"></i> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow duration-300 animate-fade-in delay-300 card-hover"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez"> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">Emma Rodriguez</div> |
|
<div class="text-blue-600">Founder, StartupX</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 text-gray-600"> |
|
<p>"As a startup, we needed affordable but premium services. IBA H SERVICE delivered beyond our expectations with their scalable solutions."</p> |
|
</div> |
|
<div class="mt-4 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="far fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900"> |
|
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between"> |
|
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl animate-fade-in"> |
|
<span class="block">Ready to elevate your business?</span> |
|
<span class="block text-blue-400">Contact IBA H SERVICE today.</span> |
|
</h2> |
|
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0 animate-fade-in delay-100"> |
|
<div class="inline-flex rounded-md shadow"> |
|
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 btn-glow"> |
|
Get started |
|
</a> |
|
</div> |
|
<div class="ml-3 inline-flex rounded-md shadow"> |
|
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gray-800 hover:bg-gray-700"> |
|
<i class="fas fa-phone-alt mr-2"></i> Contact us |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<footer class="bg-gray-800"> |
|
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8"> |
|
<div class="xl:grid xl:grid-cols-3 xl:gap-8"> |
|
<div class="space-y-8 xl:col-span-1"> |
|
<div class="flex items-center"> |
|
<i class="fas fa-handshake text-blue-500 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold text-white">IBA H SERVICE</span> |
|
</div> |
|
<p class="text-gray-300 text-base"> |
|
Delivering premium business services and solutions since 2010. |
|
</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
</div> |
|
<div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2"> |
|
<div class="md:grid md:grid-cols-2 md:gap-8"> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> |
|
Services |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Business Consulting |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Digital Transformation |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Process Optimization |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Strategic Planning |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
<div class="mt-12 md:mt-0"> |
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> |
|
Support |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Pricing Plans |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Documentation |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Help Center |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Contact Support |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="md:grid md:grid-cols-2 md:gap-8"> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> |
|
Company |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
About Us |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Our Team |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Careers |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Press |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
<div class="mt-12 md:mt-0"> |
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> |
|
Legal |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Privacy Policy |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Terms of Service |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
Cookie Policy |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300"> |
|
GDPR Compliance |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-base text-gray-400"> |
|
© 2023 IBA H SERVICE. All rights reserved. |
|
</p> |
|
<div class="mt-4 md:mt-0 flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300 text-sm"> |
|
Sitemap |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300 text-sm"> |
|
Accessibility |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300 text-sm"> |
|
Status |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('mobile-menu-button').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
if (menu.classList.contains('hidden')) { |
|
menu.classList.remove('hidden'); |
|
} else { |
|
menu.classList.add('hidden'); |
|
} |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
targetElement.scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const observerOptions = { |
|
threshold: 0.1 |
|
}; |
|
|
|
const observer = new IntersectionObserver((entries, observer) => { |
|
entries.forEach(entry => { |
|
if (entry.isIntersecting) { |
|
entry.target.classList.add('animate-fade-in'); |
|
observer.unobserve(entry.target); |
|
} |
|
}); |
|
}, observerOptions); |
|
|
|
document.querySelectorAll('.animate-fade-in').forEach(element => { |
|
observer.observe(element); |
|
}); |
|
|
|
|
|
const cards = document.querySelectorAll('.card-hover'); |
|
cards.forEach(card => { |
|
card.addEventListener('mouseenter', () => { |
|
card.style.transition = 'all 0.3s ease'; |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Hamado/iba-h" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |