-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhy-choose-us.html
More file actions
66 lines (66 loc) · 2.38 KB
/
Copy pathwhy-choose-us.html
File metadata and controls
66 lines (66 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Why Choose Us | GKY E‑Systems</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav class="nav" aria-label="Main Navigation">
<div class="nav__logo">
<a href="index.html">
<img src="assets/gky-logo.svg" alt="GKY Logo" />
</a>
</div>
<ul class="nav__links">
<li><a href="index.html">Home</a></li>
<li><a href="solutions.html">Solutions</a></li>
<li><a href="about.html">About</a></li>
<li><a href="why-choose-us.html" class="nav__active">Why Choose Us</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="why-choose-us" class="why-choose-us fade-in" aria-label="Why Choose Us">
<h2 class="why-choose-us__title">Why Choose Us</h2>
<p class="why-choose-us__intro">We deliver trusted IT solutions with a local touch and global partnerships.</p>
<ul class="why-choose-us__list">
<li class="why-choose-us__item">
<span class="why-choose-us__icon why-choose-us__icon--partners"></span>
Official partnerships (Kaspersky, Microsoft)
</li>
<li class="why-choose-us__item">
<span class="why-choose-us__icon why-choose-us__icon--local"></span>
Local Karnataka presence with fast support
</li>
<li class="why-choose-us__item">
<span class="why-choose-us__icon why-choose-us__icon--expertise"></span>
Cybersecurity & modern infra expertise
</li>
</ul>
</section>
</main>
<footer>
<!-- Will be replaced with modular footer.html content in next steps -->
<!--#include file="sections/footer.html" -->
</footer>
<script src="js/script.js"></script>
<script>
// Reveal on scroll for fade-in and slide-up
function revealOnScroll() {
document.querySelectorAll('.fade-in, .slide-up').forEach(el => {
const rect = el.getBoundingClientRect();
if (rect.top < window.innerHeight - 60) {
el.classList.add('visible');
}
});
}
window.addEventListener('scroll', revealOnScroll);
window.addEventListener('DOMContentLoaded', revealOnScroll);
</script>
</body>
</html>