-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathour-vision.html
More file actions
169 lines (166 loc) · 5.74 KB
/
Copy pathour-vision.html
File metadata and controls
169 lines (166 loc) · 5.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OUR VISION - ECDM Electrical Solutions</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css?v=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<script src="common/loadHTML.js" defer></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img
src="images/logo/Logo-Excel-Size---Full-colors---png.png"
alt="ECDM"
height="40"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="shop.html">SHOP</a>
</li>
<li class="nav-item">
<a class="nav-link" href="news.html">NEWS</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="referencesDropdown"
role="button"
data-bs-toggle="dropdown"
>
REFERENCES
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="clients.html">CLIENTS</a>
</li>
<li>
<a class="dropdown-item" href="projects.html">PROJECTS</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">CONTACT US</a>
</li>
</ul>
<div class="social-contact">
<a href="https://www.facebook.com/share/1Br2TzUyyS/?mibextid=wwXIfr"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://x.com/ecdmeg?s=21"
><i class="fa-brands fa-x-twitter"></i
></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a
href="https://www.instagram.com/ecdmelectricalsolutions?igsh=N281Z2wxNWJwbWw4&utm_source=qr "
><i class="fab fa-instagram"></i
></a>
</div>
</div>
</div>
</nav>
<!-- Vision Section -->
<section class="vision-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10">
<h1 class="text-center animate__animated animate__fadeInDown">
Our Vision
</h1>
<div class="vision-content" data-aos="fade-up">
<p class="lead animate__animated animate__fadeIn">
To lead the Middle East in developing innovative solutions for
intelligent equipment by providing superior client service
</p>
<div class="vision-points mt-5">
<div class="row">
<div
class="col-md-4 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="vision-card">
<i class="fas fa-lightbulb"></i>
<h3>Innovation</h3>
<p>
Continuously developing cutting-edge solutions that
shape the future of electrical distribution.
</p>
</div>
</div>
<div
class="col-md-4 mb-4"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="vision-card">
<i class="fas fa-shield-alt"></i>
<h3>Quality</h3>
<p>
Maintaining the highest standards of quality and safety
in all our products and services.
</p>
</div>
</div>
<div
class="col-md-4 mb-4"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="vision-card">
<i class="fas fa-globe"></i>
<h3>Global Impact</h3>
<p>
Expanding our reach to serve customers worldwide with
excellence and reliability.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer"></div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true,
});
</script>
</body>
</html>