-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
728 lines (670 loc) · 42.7 KB
/
courses.html
File metadata and controls
728 lines (670 loc) · 42.7 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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-adsense-account" content="ca-pub-1353516013773606">
<title>Our Courses | ChessDepth Academy</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1353516013773606"
crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/x-icon" href="https://github.com/Sourabhjoshi1/Chess-Depth/raw/main/favicon/favicon%20(4).ico">
<style>
/* Custom CSS for consistent styling across pages */
body {
font-family: 'Poppins', sans-serif;
}
/* Navbar Link Hover Effect */
.nav-link-hover-effect {
transition: all 0.2s ease-in-out;
position: relative;
}
.nav-link-hover-effect:after {
content: '';
position: absolute;
width: 0%;
height: 2px;
bottom: -5px;
left: 0;
background-color: #4f46e5;
transition: width 0.3s ease-out;
}
.nav-link-hover-effect:hover:after {
width: 100%;
}
.nav-link-hover-effect:hover {
color: #4f46e5;
}
/* Course/Product Card Hover Effect */
.course-card-hover {
transition: all 0.3s ease-in-out;
}
.course-card-hover:hover {
transform: translateY(-8px) scale(1.03);
box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 6px 10px -3px rgba(0, 0, 0, 0.08);
}
/* General fade-in for sections and main content */
.fade-in-content {
opacity: 0;
animation: fadeIn 1s ease-out forwards;
animation-delay: 0.2s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Highlight style for Summer Course */
.featured-course { border: 2px solid #f97316; position: relative; overflow: hidden; }
.featured-badge { position: absolute; top: 12px; right: -35px; background: #f97316; color: white; padding: 5px 40px; transform: rotate(45deg); font-size: 0.75rem; font-weight: bold; box-shadow: 0 2px 4px rgba(0,0,0,0.2); z-index: 10; }
</style>
</head>
<body class="bg-gray-100 text-gray-800">
<header class="bg-white shadow-md py-6 flex justify-between items-center sticky top-0 z-50 lg:py-4" id="main-header">
<div class="max-w-7xl mx-auto flex justify-between items-center w-full px-4 lg:px-0">
<a href="index.html" class="inline-block hover:opacity-80 transition-opacity duration-200">
<h1 class="text-3xl font-bold text-indigo-700">♟️ ChessDepth</h1>
</a>
<button id="menu-toggle" class="lg:hidden p-2 text-gray-700 hover:text-indigo-600 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<nav id="main-nav" class="hidden lg:flex space-x-4">
<a href="index.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">Home</a>
<a href="about.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">About</a>
<a href="courses.html" class="font-semibold text-indigo-700 underline underline-offset-4 decoration-2 nav-link-hover-effect">Courses</a>
<a href="coaches.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">Coaches</a>
<a href="contact.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">Contact</a>
<a href="resources.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">Resources</a>
<a href="careers.html" class="text-gray-700 hover:text-indigo-600 nav-link-hover-effect">Careers</a>
</nav>
</div>
<div id="mobile-menu" class="hidden lg:hidden absolute top-full left-0 w-full bg-white shadow-lg py-4 transition-all duration-300 transform -translate-y-full">
<div class="flex flex-col items-center space-y-4">
<a href="index.html" class="text-gray-700 hover:text-indigo-600">Home</a>
<a href="about.html" class="text-gray-700 hover:text-indigo-600">About</a>
<a href="courses.html" class="text-gray-700 hover:text-indigo-600">Courses</a>
<a href="coaches.html" class="text-gray-700 hover:text-indigo-600">Coaches</a>
<a href="contact.html" class="text-gray-700 hover:text-indigo-600">Contact</a>
<a href="resources.html" class="text-gray-700 hover:text-indigo-600">Resources</a>
<a href="careers.html" class="text-gray-700 hover:text-indigo-600">Careers</a>
</div>
</div>
</header>
<section class="bg-gradient-to-br from-indigo-500 to-purple-600 text-white py-16 fade-in-content">
<div class="max-w-4xl mx-auto text-center px-4">
<h2 class="text-4xl font-bold mb-4">Explore Our Comprehensive Courses</h2>
<p class="text-xl">Unlock your potential with our expertly designed programs for every skill level.</p>
</div>
</section>
<section id="courses-listing" class="py-16 bg-gray-100 px-4 fade-in-content">
<div class="max-w-6xl mx-auto">
<h3 class="text-3xl font-bold text-center mb-10 text-gray-800">Our Popular Programs</h3>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8" id="courses-container">
<div id="summer-course" class="bg-white p-6 rounded-lg shadow-md transition course-card-hover flex flex-col featured-course">
<div class="featured-badge">LIVE NOW</div>
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-orange-100 text-orange-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Summer Special</span>
<span class="bg-indigo-100 text-indigo-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">All Levels</span>
</div>
<h4 class="text-2xl font-bold text-orange-600 mb-1 flex-shrink-0">Complete Summer Chess Course ☀️</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i><i class="fas fa-star text-sm"></i><i class="fas fa-star text-sm"></i><i class="fas fa-star text-sm"></i><i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(New Season)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
An intensive program starting <strong>May 1st</strong>. Covering openings, middlegames, and endgames. Designed for rapid improvement over the summer break with weekly tournaments.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Intensive 1-Month Curriculum</li>
<li>Weekly Live Tournaments</li>
<li>Daily Puzzle & Strategy Kits</li>
<li>Direct Mentorship from Titled Coaches</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 4,999 / $60</span>
<span class="text-sm text-gray-500">Starts: May 1st</span>
</div>
<a href="index.html#inquiry" class="bg-orange-500 text-white px-4 py-2 rounded hover:bg-orange-600 transition shadow-md">Register Now</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-green-100 text-green-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Beginner</span>
<span class="bg-indigo-100 text-indigo-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Tactics</span>
</div>
<h4 class="text-2xl font-bold text-indigo-700 mb-1 flex-shrink-0">Beginner's Blueprint: Master the Basics</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star-half-alt text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(4.8 / 55 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Start your chess journey right! Learn piece movements, basic checkmates, forks, pins, and essential opening principles. Perfect for absolute beginners.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Understanding the Chessboard</li>
<li>Basic Tactical Motifs</li>
<li>Fundamental Mates (King & Rook, King & Queen)</li>
<li>Introduction to Opening Strategy</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 7,999 / $99</span>
<span class="text-sm text-gray-500">Duration: 8 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-blue-100 text-blue-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Advanced Beginner</span>
<span class="bg-orange-100 text-orange-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Foundations</span>
</div>
<h4 class="text-2xl font-bold text-teal-700 mb-1 flex-shrink-0">Beyond the Basics: Solidifying Your Foundation</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 30 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
You know the rules, now learn to play! This course focuses on developing sound strategic thinking, improving tactical vision, and understanding simple endgames.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Developing Pieces Efficiently</li>
<li>Basic Positional Concepts</li>
<li>Common Tactical Patterns</li>
<li>Simple Endgame Techniques (Pawn, King & Queen vs King)</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 10,999 / $135</span>
<span class="text-sm text-gray-500">Duration: 10 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Intermediate</span>
<span class="bg-purple-100 text-purple-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Strategy</span>
</div>
<h4 class="text-2xl font-bold text-purple-700 mb-1 flex-shrink-0">Intermediate Positional Play: Beyond Tactics</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(4.9 / 42 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Move beyond simple tactics and delve into the art of positional chess. Learn about pawn structures, weak squares, piece activity, and prophylactic thinking.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Pawn Structures & Breaks</li>
<li>Understanding Piece Value & Activity</li>
<li>Evaluating Positions</li>
<li>Converting Small Advantages</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 14,999 / $185</span>
<span class="text-sm text-gray-500">Duration: 12 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-red-100 text-red-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Advanced</span>
<span class="bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Openings</span>
</div>
<h4 class="text-2xl font-bold text-blue-700 mb-1 flex-shrink-0">Advanced Opening Repertoire: Dominate from Move 1</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star-half-alt text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(4.7 / 28 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Build a robust and dynamic opening repertoire for both White and Black. Understand the ideas behind the moves and gain a significant edge early in the game.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Deep Dive into Main Lines</li>
<li>Understanding Transpositions</li>
<li>Preparing Novelties & Surprises</li>
<li>Analyzing Your Opening Play</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 15,999 / $195</span>
<span class="text-sm text-gray-500">Duration: 10 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Intermediate</span>
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Endgames</span>
</div>
<h4 class="text-2xl font-bold text-green-700 mb-1 flex-shrink-0">Endgame Mastery: The Art of Conversion</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 33 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Learn the critical techniques to convert advantages in the endgame. Study pawn endgames, rook endgames, and advanced king activity concepts.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>King and Pawn Endgames</li>
<li>Rook Endgames Principles</li>
<li>Minor Piece Endgames</li>
<li>Practical Endgame Play</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 6,499 / $80</span>
<span class="text-sm text-gray-500">Duration: 6 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-red-100 text-red-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Advanced</span>
<span class="bg-pink-100 text-pink-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Psychology</span>
</div>
<h4 class="text-2xl font-bold text-pink-700 mb-1 flex-shrink-0">Chess Psychology: Master Your Mind</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star-half-alt text-sm"></i>
<i class="far fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(4.4 / 15 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Develop mental resilience, improve concentration, and learn to handle pressure in crucial moments. Essential for competitive players.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Dealing with Tilt & Blunders</li>
<li>Concentration & Focus Techniques</li>
<li>Time Management Under Pressure</li>
<li>Understanding Opponent's Psychology</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 5,199 / $65</span>
<span class="text-sm text-gray-500">Duration: 4 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-teal-100 text-teal-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Beginner</span>
<span class="bg-gray-100 text-gray-600 text-xs font-semibold px-2.5 py-0.5 rounded-full">Soft Skills</span>
<span class="bg-purple-100 text-purple-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Corporate</span>
</div>
<h4 class="text-2xl font-bold text-teal-700 mb-1 flex-shrink-0">Chess for Corporate Professionals</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 10 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Enhance strategic thinking, problem-solving, and decision-making skills applicable to the corporate world. Learn the fundamentals of chess in a professional context.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Strategic Planning & Execution</li>
<li>Decision Making Under Pressure</li>
<li>Logical Thinking & Problem Solving</li>
<li>Team Building through Chess (Optional)</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 11,999 / $150</span>
<span class="text-sm text-gray-500">Duration: 6 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-indigo-100 text-indigo-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Kids</span>
<span class="bg-pink-100 text-pink-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Youth</span>
</div>
<h4 class="text-2xl font-bold text-indigo-700 mb-1 flex-shrink-0">Scholastic Chess: Nurturing Young Minds</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 67 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
A fun and engaging program designed specifically for children and teenagers to develop critical thinking, patience, and sportsmanship through chess.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Interactive Lessons & Puzzles</li>
<li>Building Concentration & Focus</li>
<li>Introduction to Tournament Play</li>
<li>Fun Chess Variants</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 9,999 / $120</span>
<span class="text-sm text-gray-500">Duration: Varies</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-purple-100 text-purple-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Personalized</span>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">All Levels</span>
</div>
<h4 class="text-2xl font-bold text-purple-700 mb-1 flex-shrink-0">Private Coaching & Game Analysis</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 89 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Receive one-on-one tailored coaching sessions and in-depth analysis of your games to identify strengths, weaknesses, and a personalized improvement plan.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Individualized Curriculum</li>
<li>Detailed Game Review</li>
<li>Personalized Drills & Homework</li>
<li>Flexible Scheduling</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 19,999 / $240</span>
<span class="text-sm text-gray-500">Duration: Custom</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-blue-100 text-blue-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Competitive</span>
<span class="bg-red-100 text-red-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Advanced</span>
</div>
<h4 class="text-2xl font-bold text-blue-700 mb-1 flex-shrink-0">Tournament Preparation & Mindset</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star-half-alt text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(4.9 / 45 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Elevate your tournament performance. This course covers pregame routines, in-game decision making, post-game analysis, and mental fortitude for competitive play.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Opening Preparation Strategies</li>
<li>Mid-Game Calculation Techniques</li>
<li>Endgame Conversion in Pressure</li>
<li>Psychological Preparedness</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 16,999 / $200</span>
<span class="text-sm text-gray-500">Duration: 8 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-orange-100 text-orange-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Speed Chess</span>
<span class="bg-gray-100 text-gray-600 text-xs font-semibold px-2.5 py-0.5 rounded-full">Tactics</span>
</div>
<h4 class="text-2xl font-bold text-orange-700 mb-1 flex-shrink-0">Blitz & Rapid Play Mastery</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 22 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Improve your performance in fast time controls. Focus on quick pattern recognition, time management, and practical decision-making under pressure.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Time Scramble Techniques</li>
<li>Blunder Prevention in Blitz</li>
<li>Opening Principles for Rapid Play</li>
<li>Psychological Traps & Tricks</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 5,499 / $70</span>
<span class="text-sm text-gray-500">Duration: 5 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition course-card-hover flex flex-col">
<div class="course-card-content flex flex-col h-full">
<div class="flex items-center mb-4 flex-shrink-0">
<span class="bg-purple-100 text-purple-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded-full">Advanced</span>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Tactics</span>
</div>
<h4 class="text-2xl font-bold text-purple-700 mb-1 flex-shrink-0">Advanced Tactics & Combinations</h4>
<div class="flex items-center text-yellow-500 mb-3">
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<i class="fas fa-star text-sm"></i>
<span class="text-gray-500 text-xs ml-2">(5.0 / 38 Reviews)</span>
</div>
<p class="text-gray-600 mb-4 course-description flex-grow">
Dive deep into complex tactical motifs, sacrifice patterns, and multi-move combinations. Sharpen your calculation and visualization skills.
</p>
<ul class="list-disc list-inside text-sm text-gray-500 mb-4 course-features flex-grow">
<li>Deep Calculation Techniques</li>
<li>Advanced Sacrifices & Attacks</li>
<li>Zugzwang & Prophylaxis</li>
<li>Mastering Famous Combinations</li>
</ul>
<div class="flex justify-between items-center text-gray-700 font-semibold flex-shrink-0 mt-auto border-t pt-3">
<div class="flex flex-col text-left">
<span class="text-lg text-gray-800 font-bold">₹ 8,999 / $110</span>
<span class="text-sm text-gray-500">Duration: 7 Weeks</span>
</div>
<a href="index.html#inquiry" class="bg-indigo-500 text-white px-4 py-2 rounded hover:bg-indigo-600 transition">Inquire</a>
</div>
</div>
</div>
</div>
<p class="text-center text-gray-600 mt-12 text-lg">
Can't find what you're looking for? <a href="index.html#inquiry" class="text-indigo-600 hover:underline font-semibold">Contact us</a> for custom training plans!
</p>
</div>
</section>
<section id="accessories" class="py-16 bg-white px-4 fade-in-content">
<div class="max-w-6xl mx-auto">
<h3 class="text-3xl font-bold text-center text-indigo-700 mb-4">Essential Chess Accessories 🛒</h3>
<p class="text-lg text-gray-600 text-center mb-10">Get the FIDE-approved gear used by our coaches for tournament preparation and play.</p>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-lg shadow-lg p-6 text-center transition-all duration-300 hover:shadow-xl hover:scale-[1.02] flex flex-col h-full">
<img src="https://github.com/Sourabhjoshi1/Chess-Depth/blob/main/favicon/f482bec9-8c5e-486e-ac66-92cbb4e5400d.png?raw=true" alt="FIDE Tournament Chess Set" class="w-full h-48 object-contain mx-auto mb-4 rounded-md flex-shrink-0">
<h4 class="text-2xl font-bold text-gray-800 mb-2 flex-shrink-0">Official FIDE Tournament Chess Set (18")</h4>
<div class="text-lg mb-4 flex-shrink-0">
<span class="text-red-600 font-bold mr-3">₹ 799</span>
<span class="text-gray-500 line-through">₹ 1299</span>
<span class="text-green-600 text-sm ml-2">(38% OFF)</span>
</div>
<p class="text-sm text-gray-600 mb-4 flex-grow">
Official 18" x 18" vinyl mat and triple-weighted plastic pieces. Perfect for home study and tournament preparation.
</p>
<a href="contact.html" class="w-full bg-indigo-600 text-white font-semibold py-3 rounded-lg hover:bg-indigo-700 transition flex items-center justify-center gap-2 mt-auto flex-shrink-0">
<i class="fas fa-shopping-cart"></i> Order / Inquire
</a>
</div>
<div class="bg-gray-50 rounded-lg shadow-lg p-6 text-center transition-all duration-300 hover:shadow-xl hover:scale-[1.02] flex flex-col h-full">
<img src="https://github.com/Sourabhjoshi1/Chess-Depth/blob/main/favicon/c9462090-aafd-4460-bfbd-6240608cb211.png?raw=true" alt="FIDE Digital Clock" class="w-full h-48 object-contain mx-auto mb-4 rounded-md flex-shrink-0">
<h4 class="text-2xl font-bold text-gray-800 mb-2 flex-shrink-0">FIDE Tournament Digital Clock</h4>
<div class="text-lg mb-4 flex-shrink-0">
<span class="text-red-600 font-bold mr-3">₹ 3999</span>
<span class="text-gray-500 line-through">₹ 4500</span>
<span class="text-green-600 text-sm ml-2">(Save ₹501)</span>
</div>
<p class="text-sm text-gray-600 mb-4 flex-grow">
Essential digital clock compliant with all FIDE time controls, including delay and increment modes.
</p>
<a href="contact.html" class="w-full bg-indigo-600 text-white font-semibold py-3 rounded-lg hover:bg-indigo-700 transition flex items-center justify-center gap-2 mt-auto flex-shrink-0">
<i class="fas fa-shopping-cart"></i> Order / Inquire
</a>
</div>
<div class="bg-gray-50 rounded-lg shadow-lg p-6 text-center transition-all duration-300 hover:shadow-xl hover:scale-[1.02] flex flex-col h-full">
<img src="https://i.ebayimg.com/images/g/1LYAAOSwDF1mIuik/s-l400.jpg" alt="Premium Chess Book" class="w-full h-48 object-contain mx-auto mb-4 rounded-md flex-shrink-0">
<h4 class="text-2xl font-bold text-gray-800 mb-2 flex-shrink-0">Complete Book of Chess Strategy</h4>
<div class="text-lg mb-4 flex-shrink-0">
<span class="text-gray-800 font-bold">₹ 850</span>
</div>
<p class="text-sm text-gray-600 mb-4 flex-grow">
A selection of high-level puzzle and analysis books chosen by our Grandmaster coach.
</p>
<a href="contact.html" class="w-full bg-indigo-600 text-white font-semibold py-3 rounded-lg hover:bg-indigo-700 transition flex items-center justify-center gap-2 mt-auto flex-shrink-0">
<i class="fas fa-shopping-cart"></i> Order / Inquire
</a>
</div>
</div>
<p class="text-center text-gray-600 mt-12 text-lg">
For bulk orders or specific accessory inquiries, please <a href="contact.html" class="text-indigo-600 hover:underline font-semibold">Contact Us Directly</a>.
</p>
</div>
</section>
<footer class="bg-gray-800 text-white py-6 mt-10">
<div class="max-w-5xl mx-auto text-center">
<p>© 2025 ChessDepth Academy. All rights reserved.</p>
<div class="mt-4 flex justify-center space-x-6">
<a href="https://www.instagram.com/chessdepthacademy1/" class="text-gray-300 hover:text-indigo-300 transition-colors duration-200 text-2xl" target="_blank" aria-label="Follow us on Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.facebook.com/chessdepthacademy/" class="text-gray-300 hover:text-indigo-300 transition-colors duration-200 text-2xl" target="_blank" aria-label="Follow us on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-300 hover:text-indigo-300 transition-colors duration-200 text-2xl" aria-label="Watch us on YouTube"><i class="fab fa-youtube"></i></a>
</div>
<p class="mt-4 text-sm text-gray-400">Made by Sourabh Joshi ❤️</p>
</div>
</footer>
<script>
// JavaScript for the Hamburger Menu and general functionality
document.addEventListener('DOMContentLoaded', () => {
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
if (menuToggle && mobileMenu) {
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
mobileMenu.classList.toggle('-translate-y-full');
const menuIcon = menuToggle.querySelector('svg');
if (!mobileMenu.classList.contains('hidden')) {
menuIcon.innerHTML = '<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>'; // X icon
} else {
menuIcon.innerHTML = '<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>'; // Hamburger icon
}
});
const mobileLinks = mobileMenu.querySelectorAll('a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
mobileMenu.classList.add('-translate-y-full');
// Reset icon back to hamburger
menuToggle.querySelector('svg').innerHTML = '<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>';
});
});
}
// --- Simple Fade-in for Content Sections ---
const contentSections = document.querySelectorAll('.fade-in-content');
contentSections.forEach(section => {
section.style.animation = 'fadeIn 1s ease-out forwards';
section.style.opacity = '1';
});
// --- Smooth Scroll Logic ---
document.querySelectorAll('nav a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId.startsWith("#")) {
const targetElement = document.querySelector(targetId);
if (targetElement) {
const headerOffset = document.getElementById('main-header') ? document.getElementById('main-header').offsetHeight : 0;
const elementPosition = targetElement.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition - headerOffset - 20;
window.scrollTo({
top: offsetPosition,
behavior: "smooth"
});
}
} else {
window.location.href = targetId;
}
});
});
// --- Sticky Header Shadow Logic (You need to move this JS back to index.html if you want it on scroll) ---
const header = document.getElementById('main-header');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('shadow-xl');
} else {
header.classList.remove('shadow-xl');
}
});
});
</script>
</body>
</html>