File size: 9,671 Bytes
8aeb522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">

<!-- Mirrored from es-teams-database2025.onrender.com/about by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 14 Feb 2025 22:35:00 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>𝗔𝗕𝗒𝗨𝗧 π—˜π—¦ π—§π—˜π—”π— π—¦ π—§π—˜π—–π—›</title>
    <script src="../external.html?link=https://cdn.tailwindcss.com/"></script>
    <style>
        /* Typing effect */
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        .typing {
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            border-right: 3px solid white;
            animation: typing 4s steps(40) forwards, blink 0.8s infinite;
        }

        /* Blur background when menu is open */
        .blurred {
            filter: blur(8px);
        }

        /* Neon glowing line */
        .neon-line {
            width: 60%;
            height: 2px;
            background: cyan;
            margin: 20px auto;
            box-shadow: 0px 0px 8px cyan;
        }

        /* Hide menu initially */
        .menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100vh;
            background: rgba(31, 41, 55, 0.9); /* Slight transparency */
            color: white;
            padding: 20px;
            box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.5);
            transition: right 0.3s ease-in-out;
            z-index: 100;
            overflow-y: auto;
        }

        .menu-open {
            right: 0;
        }

        /* Menu items */
        .menu ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .menu ul li {
            padding: 10px 0;
            text-align: left;
        }

        .menu ul li a {
            display: block;
            padding: 10px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
            color: white;
            transition: background 0.3s;
            pointer-events: auto;
        }

        .menu ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Close button */
        #close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            float: right;
        }

        /* Box for description */
        .content-box {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid cyan;
            box-shadow: 0 0 10px cyan;
            width: 80%;
            margin: auto;
            text-align: center;
        }

        /* Chat button positioning */
        #chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 15px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            font-size: 24px;
            display: block;
        }

        /* Ensure button is visible on smaller screens */
        @media (max-width: 768px) {
            #chat-button {
                bottom: 20px;
                right: 20px;
            }
        }
    </style>
</head>
<body class="bg-gray-900 text-white">

    <!-- Navbar -->
    <nav class="p-5 flex justify-between items-center">
        <h1 class="text-xl font-bold">π—˜π—¦ π—§π—˜π—”π— π—¦ π—§π—˜π—–π—›</h1>
        <div id="menu-btn" class="cursor-pointer text-2xl">&#9776;</div>
    </nav>

    <!-- Sliding Sidebar Menu -->
    <div id="menu" class="menu">
        <button id="close-menu">&#10006;</button>
        <ul class="mt-5 space-y-4">
            <li>
                <a href="../external.html?link=https://whatsapp.com/channel/0029Vaj1vKSK5cDDT4tVvY1y" target="_blank">
                    WhatsApp Channel
                </a>
            </li>
            <li>
                <a href="../external.html?link=https://t.me/esteam24" target="_blank">
                    Telegram Channel
                </a>
            </li>
            <li>
                <a href="../external.html?link=https://youtube.com/@esteams" target="_blank">
                    YouTube Channel
                </a>
            </li>
            <li>
                <a href="../external.html?link=https://wa.me/09037524605">
                    Contact Us
                </a>
            </li>
        </ul>
    </div>

    <!-- Main Content -->
    <div id="content" class="text-center mt-10 transition-all">
        <h2 class="text-3xl font-bold">𝗔𝗕𝗒𝗨𝗧 π—˜π—¦ π—§π—˜π—”π— π—¦ π—§π—˜π—–π—›</h2>
        <div class="neon-line"></div>

        <!-- Typing Sections Inside a Box -->
        <div class="content-box mt-10">
            <h3 id="section" class="text-2xl font-semibold typing"></h3>
        </div>
    </div>

    <!-- JavaScript -->
    <script>
        const sections = [
            "Welcome to ES TEAMS TECH, where innovation meets excellence.",
            "We specialize in cutting-edge technology solutions designed to enhance your digital experience and business operations.",
            "With expertise in WhatsApp bot development, website creation, business promotion, and educational tutoring, we deliver top-notch services tailored to meet your needs.",
            "WhatsApp Bot Development",
            "Our WhatsApp bot solutions automate responses, streamline customer interactions, and enhance engagement for businesses.",
            "We build AI-powered bots for customer service, marketing, and automation.",
            "Website Development",
            "We craft modern, high-performing websites that captivate audiences and drive business growth.",
            "From business sites to e-commerce platforms, our expert developers ensure a professional online presence.",
            "Business Promotion & Digital Marketing",
            "We offer SEO, social media marketing, and brand positioning to help businesses maximize visibility.",
            "Our strategies drive customer engagement and competitive market advantage.",
            "Educational Tutoring & Tech Training",
            "We empower individuals with coding, AI, and digital marketing skills through expert-led training.",
            "Why Choose ES TEAMS TECH?",
            "βœ… Expertise in cutting-edge technology",
            "βœ… Tailored solutions for businesses and individuals",
            "βœ… Reliable customer support and after-service care",
            "βœ… Commitment to excellence and innovation",
            "βœ… Affordable pricing with high-quality results",
            "At ES TEAMS TECH, we believe that technology should work for you.",
            "Our goal is to make tasks easier, businesses more efficient, and learning more accessible.",
            "Let's build the future together!"
        ];

        let index = 0;
        function typeNext() {
            const sectionElement = document.getElementById("section");
            sectionElement.classList.remove("typing");
            setTimeout(() => {
                sectionElement.textContent = sections[index];
                sectionElement.classList.add("typing");
                index = (index + 1) % sections.length;
                setTimeout(typeNext, 5000);
            }, 100);
        }

        typeNext();

        // Menu Toggle
        const menuBtn = document.getElementById("menu-btn");
        const closeMenu = document.getElementById("close-menu");
        const menu = document.getElementById("menu");
        const content = document.getElementById("content");

        menuBtn.addEventListener("click", () => {
            menu.classList.add("menu-open");
            content.classList.add("blurred");
        });

        closeMenu.addEventListener("click", () => {
            menu.classList.remove("menu-open");
            content.classList.remove("blurred");
        });

        // Ensure menu closes when clicking outside
        document.body.addEventListener("click", (e) => {
            if (!menu.contains(e.target) && !menuBtn.contains(e.target)) {
                menu.classList.remove("menu-open");
                content.classList.remove("blurred");
            }
        });

        // Chaport Live Chat Script Integration
        (function(w,d,v3){
            w.chaportConfig = {
                appId : '6512c90d8bbcce468960ab73'
            };

            if(w.chaport)return;
            v3=w.chaport={};
            v3._q=[];
            v3._l={};
            v3.q=function(){v3._q.push(arguments)};
            v3.on=function(e,fn){if(!v3._l[e])v3._l[e]=[];v3._l[e].push(fn)};
            var s=d.createElement('script');s.type='text/javascript';s.async=true;
            s.src='../app.chaport.com/javascripts/insert.js';
            var ss=d.getElementsByTagName('script')[0];
            ss.parentNode.insertBefore(s,ss);
        })(window, document);
    </script>

</body>

<!-- Mirrored from es-teams-database2025.onrender.com/about by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 14 Feb 2025 22:35:01 GMT -->
</html>