-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
2191 lines (1834 loc) · 44.3 KB
/
style.css
File metadata and controls
2191 lines (1834 loc) · 44.3 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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
/* General Styles */
.getfaq {
display: block;
font: 10.5em 'Montserrat';
width: 960px;
height: 300px;
margin: 0 auto;
}
.text-copy {
fill: none;
stroke: white;
stroke-dasharray: 6% 29%;
stroke-width: 5px;
stroke-dashoffset: 0%;
animation: stroke-offset 5.5s infinite linear;
}
.text-copy:nth-child(1) {
stroke: aqua;
animation-delay: -1s;
}
.text-copy:nth-child(2) {
stroke: #fff;
animation-delay: -2s;
}
.text-copy:nth-child(3) {
stroke: #fff;
animation-delay: -3s;
}
.text-copy:nth-child(4) {
stroke: aqua;
animation-delay: -4s;
}
.text-copy:nth-child(5) {
stroke: aqua;
animation-delay: -5s;
}
@keyframes stroke-offset {
100% {
stroke-dashoffset: -35%;
}
}
.btn {
text-decoration: none;
border: 1px solid rgb(146, 148, 248);
position: relative;
overflow: hidden;
}
.btn:hover {
box-shadow: 1px 1px 25px 10px rgba(255, 255, 255, 0.4);
}
.btn:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: all 650ms;
}
.btn:hover:before {
left: 100%;
}
/* General Styles for Carousel */
.carousel-item {
height: 100vh;
min-height: 300px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.carousel-caption {
bottom: 270px;
}
.carousel-caption h5 {
font-size: 45px;
text-transform: uppercase;
letter-spacing: 2px;
margin-top: 25px;
}
.carousel-caption p {
width: 75%;
margin: auto;
font-size: 18px;
line-height: 1.9;
}
.navbar-light .navbar-brand {
color: rgb(255, 255, 255);
font-size: 25px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 2px;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
color: #fff;
}
.navbar-light .navbar-nav .nav-link {
color: #fff;
}
.navbar-toggler {
background: #fff;
}
.navbar-nav {
text-align: center;
}
.nav-link {
padding: .2rem 1rem;
color: rgb(255, 255, 255);
}
.nav-link.active,
.nav-link:focus {
color: #fff;
}
.navbar-toggler {
padding: 1px 5px;
font-size: 18px;
line-height: 0.3;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
color: #fff;
}
.section-title {
float: left;
position: relative;
width: 100%;
padding-bottom: 40px;
margin-top: 10%;
}
.section-title p {
color: #7d93b2;
font-size: 13px;
line-height: 20px;
max-width: 550px;
margin: 0 auto;
}
.section-title h1 {
float: left;
width: 100%;
text-align: center;
color: #000000;
position: relative;
}
.swiper-container {
width: 100%;
height: 100%;
}
/* Media Query for Phones (max-width: 600px) */
@media (max-width: 600px) {
/* .getfaq font size */
.getfaq {
font-size: 5em; /* Reduce font size */
width: 90%; /* Make the container width more flexible */
height: auto; /* Adjust height based on content */
}
.text-copy {
stroke-width: 3px; /* Reduce stroke width */
}
.btn {
padding: 10px 20px; /* Adjust button padding */
font-size: 1.2em; /* Smaller font size for buttons */
}
.btn:hover {
box-shadow: 1px 1px 20px 8px rgba(255, 255, 255, 0.3); /* Adjust shadow size */
}
/* Carousel */
.carousel-item {
height: auto; /* Adjust height for smaller screens */
min-height: 250px; /* Reduced min height */
}
.carousel-caption {
bottom: 180px; /* Move caption higher for mobile */
}
.carousel-caption h5 {
font-size: 20px; /* Smaller font size for heading */
text-transform: uppercase;
letter-spacing: 1px; /* Adjust letter-spacing */
}
.carousel-caption p {
width: 90%; /* Make paragraph take up more width */
font-size: 14px; /* Smaller font size for description */
}
/* Navbar */
.navbar-light .navbar-brand {
font-size: 18px; /* Smaller font size for brand */
}
.navbar-light .navbar-nav .nav-link {
font-size: 12px; /* Smaller font size for nav links */
padding: .2rem 0.8rem; /* Adjust padding */
}
.navbar-toggler {
padding: 1px 3px;
font-size: 16px; /* Adjust font size for toggler */
}
/* Section Title */
.section-title {
margin-top: 5%; /* Adjust margin for section title */
padding-bottom: 30px; /* Adjust padding */
}
.section-title p {
font-size: 11px; /* Smaller font size */
line-height: 18px; /* Adjust line height */
}
.section-title h1 {
font-size: 24px; /* Smaller title font size */
font-weight: bold;
}
/* Swiper */
.swiper-container {
height: auto; /* Let height adjust based on content */
}
/* Mobile-specific adjustments */
.navbar-light .navbar-nav .nav-link {
font-size: 10px; /* Very small text size for mobile */
padding: 0.1rem 0.5rem; /* Reduce padding for nav links */
}
/* Adjusting button layout on smaller screens */
.btn {
font-size: 1.1em; /* Slightly smaller button text on mobile */
padding: 8px 16px; /* Reduce padding */
}
/* Improve text readability for small screens */
.carousel-caption h5 {
font-size: 18px; /* Even smaller text for mobile */
letter-spacing: 0.8px; /* Tighter letter spacing */
}
.carousel-caption p {
font-size: 12px; /* Small font size */
width: 85%; /* Allow text to fill more space */
margin: 0 auto; /* Center-align paragraph */
}
}
.testi-item {
transition: all .3s ease-in-out;
transform: scale(0.9);
opacity: 0.9;
}
.testimonials-text {
padding: 75px 50px 75px;
overflow:hidden;
background: #f5f6fa;
border:1ps solid #f1f1f1;
border-radius: 10px;
transition: all .3s ease-in-out;
align-items: center !important;
}
.testimonials-text-after{
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
color: #ccc;
opacity: .3;
font-size: 35px;
transition: all 400ms linear;
bottom: 25px;
right: 30px;
}
.testimonials-text-before{
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
color: #ccc;
opacity: .3;
font-size: 35px;
transition: all 400ms linear;
top: 25px;
left: 30px;
}
.testimonials-text .listing-rating{
float: none;
display: inline-block;
margin-bottom: 12px;
display: flex;
justify-content: center;
}
.listing-rating i{
color: #007aff;
}
.testimonials-avatar h3{
font-weight: 600;
color: #7d93b2;
font-size: 18px;
/* padding-left: 40%; */
display: flex;
justify-content: center;
}
.testimonials-avatar h4{
font-weight:400;
font-size:12px;
padding-top:6px;
color:#007aff;
text-align: center;
}
.testimonials-carousel .swiper-slide{
padding: 30px 0;
}
.testi-avatar{
position: absolute;
left: 50%;
top: -30px;
width: 90px;
height: 90px;
margin-left: -45px;
z-index: 20;
}
.testi-avatar img{
width: 90px;
height: 90px;
float: left;
border-radius: 100%;
border:6px solid #fff;
box-shadow: 0 9px 26px rgba(58, 87,135,0.1);
}
.swiper-slide-active .testimonials-text {
background: #fff;
box-shadow: 0 9px 26px rgba(58, 87,135,0.1);
}
.testimonials-text p{
color: #878c9f;
font-size: 14px;
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
line-height: 24px;
padding-bottom: 10px;
font-weight: 500;
}
/* General body and carousel settings */
body {
background-color: #ecf8f8 !important;
overflow-x: hidden;
margin: 0;
}
.carousel, .carousel-item {
width: 100vw !important;
}
.carousel {
position: absolute;
left: 0%;
background-image: none;
max-height: min-content;
height: 100vh;
min-height: 300px;
background: no-repeat center center scroll;
background-size: cover;
}
.carousel-item img {
width: 100% !important;
}
/* Navbar adjustments for mobile */
nav {
display: flex;
padding: 2% 6%;
justify-content: space-between;
align-items: center;
background-color: rgb(15, 12, 12);
flex-wrap: wrap;
}
nav .logo img {
width: 150px; /* Adjust logo size */
height: auto;
}
nav .logo {
text-decoration: none;
font-size: 24px;
color: #fff3f3;
font-weight: bold;
position: absolute;
left: 5%;
animation: movedown 1s linear 1;
}
nav .fab {
font-size: 42px;
color: #0000006f;
}
/* Responsive nav-links */
.nav-links {
flex: 1;
text-align: right;
display: flex;
justify-content: flex-end;
}
.nav-links ul li {
display: inline-block;
list-style: none;
padding: 8px 12px;
position: relative;
text-transform: uppercase;
}
.nav-links ul li a {
text-decoration: none;
color: #fff;
font-size: 18px;
}
.nav-links ul li::after {
content: '';
width: 0%;
height: 2px;
background: #0000006f;
display: block;
margin: auto;
transition: 0.5s;
}
.nav-links ul li:hover::after {
width: 100%;
}
/* Hero section - text box */
.text_box {
display: inline;
padding-top: 10%;
width: 90%;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
animation: fadeIn 1s linear 1;
}
/* Hero button */
.hero_btn {
position: relative;
display: inline-block;
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
padding: 12px 34px;
font-size: 13px;
background: transparent;
cursor: pointer;
text-decoration: none;
margin-top: 5%;
margin-bottom: 90px; /* Added bottom margin */
}
.hero_btn:hover {
border: 1px solid #0000006f;
background: #0000006f;
transition: 1s;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
/* Adjust navbar logo */
nav .logo img {
width: 120px;
}
/* Adjust the padding of text box for mobile */
.text_box {
padding-top: 15%;
width: 80%;
}
.text_box h1 {
font-size: 50px; /* Adjust text size */
}
.text_box #headtext {
font-size: 4vmin; /* Adjust font size */
}
.text_box p {
font-size: 16px; /* Adjust font size */
}
/* Adjust hero button */
.hero_btn {
padding: 10px 30px;
font-size: 12px;
}
/* Navigation links for mobile */
.nav-links {
width: 100%;
display: block;
text-align: center;
margin-top: 10px;
}
.nav-links ul li {
display: block;
margin: 10px 0;
}
.nav-links ul li a {
font-size: 16px;
}
/* Pagination adjustments */
.tc-pagination {
float: none;
display: flex;
justify-content: center;
}
.tc-pagination_wrap {
bottom: -20px;
}
.tc-pagination2 {
display: block;
padding: 14px 0;
width: 100%;
min-width: 200px;
border-radius: 30px;
}
}
/* Additional smaller screen adjustments */
@media (max-width: 480px) {
.text_box h1 {
font-size: 40px; /* Further reduce size */
}
.text_box #headtext {
font-size: 9vmin; /* Smaller text */
}
.hero_btn {
font-size: 11px; /* Further adjust button text size */
padding: 8px 20px;
}
.nav-links ul li a {
font-size: 14px; /* Adjust for small screens */
}
.text_box p {
font-size: 14px; /* Adjust for small screens */
}
}
@keyframes movedown {
0% {
transform: translateY(-100px);
}
100% {
transform: translateY(0);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Navbar Container (Global Styles) */
:root {
--primary-color: #22d8b8;
--nav-bg-color: #0a0000;
--hover-color: #24f8c7;
--shadow-light: rgba(0, 0, 0, 0.15);
--shadow-dark: rgba(0, 0, 0, 0.3);
--font-family: 'Poppins', sans-serif;
--text-color-light: #fff;
--text-color-dark: #333;
}
/* Navbar Container */
nav {
width: 100%;
background: var(--nav-bg-color);
position: fixed;
top: 0;
left: 0;
z-index: 999;
padding: 10px 0; /* Adds padding to the navbar for better height */
box-shadow: 0 4px 10px var(--shadow-dark);
font-family: var(--font-family);
display: flex;
justify-content: space-between;
align-items: center;
}
/* Navbar Logo (Optional) */
.nav-logo {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-left: 20px;
text-transform: uppercase;
}
/* Navbar Links - Large Screens */
.nav-links {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 20px;
}
.nav-links ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.nav-links ul li {
padding: 10px 20px;
color: var(--text-color-light);
font-size: 1rem;
font-weight: 600;
text-transform: capitalize;
position: relative;
transition: all 0.3s ease;
}
.nav-links ul li:hover {
color: var(--primary-color);
transform: translateY(-5px);
}
.nav-links ul li::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--primary-color);
opacity: 0;
transition: opacity 0.3s ease;
}
/* Hamburger Icon for Small Screens */
.navbar-toggler {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 10px;
margin-right: 20px;
}
.navbar-toggler div {
width: 30px;
height: 4px;
background-color: #fff;
transition: all 0.3s ease;
}
/* Navbar Links (Small Screens) */
@media (max-width: 768px) {
.nav-links {
display: none; /* Initially hide the navbar links on mobile */
position: absolute;
top: 0;
right: 0;
height: 100vh;
width: 250px;
background: var(--nav-bg-color);
flex-direction: column;
justify-content: flex-start;
padding: 60px 20px; /* Add padding to make room for navbar toggler */
z-index: 100;
box-shadow: 2px 0 15px var(--shadow-dark);
transition: right 0.3s ease;
}
.nav-links.active {
display: flex; /* Show navbar when active (toggle clicked) */
right: 0;
}
.nav-links ul {
display: flex;
flex-direction: column;
gap: 20px;
}
.nav-links ul li {
width: 100%;
text-align: left;
font-size: 1.2rem;
padding: 15px;
}
.nav-links ul li:hover {
background-color: var(--primary-color);
color: #fff;
transform: translateX(5px);
}
/* Hamburger Menu Active State */
.navbar-toggler.active div:nth-child(1) {
transform: rotate(45deg);
position: relative;
top: 6px;
}
.navbar-toggler.active div:nth-child(2) {
opacity: 0;
}
.navbar-toggler.active div:nth-child(3) {
transform: rotate(-45deg);
position: relative;
top: -6px;
}
}
/* Navbar Links - Medium Screens */
@media (min-width: 768px) and (max-width: 1024px) {
.nav-links ul li {
padding: 15px 25px;
}
.navbar-toggler {
display: none;
}
}
/* Navbar Links - Large Screens */
@media (min-width: 1025px) {
.nav-links {
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav-links ul li {
padding: 20px 30px;
font-size: 1.2rem;
}
}
/* Smooth Transition for Navbar */
nav, .nav-links ul li {
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
/* Additional Navbar Customization */
.nav-links ul li:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transform: translateY(-3px);
}
/* Mobile Navbar Container */
@media (max-width: 767px) {
nav {
padding: 15px 0; /* Add padding to navbar for small screens */
}
.nav-logo {
font-size: 1.8rem; /* Adjust the logo size */
margin-left: 15px; /* Reduce margin */
}
.navbar-toggler {
display: flex; /* Show the hamburger menu on small screens */
}
.nav-links.active {
right: 0;
display: flex; /* Display navbar when toggled */
}
.nav-links ul li {
font-size: 1.1rem;
padding: 12px 20px;
}
}
/* Course Section Start */
:root {
--primary-color: #0000006f;
--hover-color: #22d8b8;
--bg-color-light: #f7f7f7;
--card-bg-color: #ffffff;
--text-color-dark: #333;
--shadow-color-light: rgba(0, 0, 0, 0.1);
--shadow-color-dark: rgba(0, 0, 0, 0.2);
--font-family: 'Poppins', sans-serif;
}
/* General Container */
.course {
width: 100%;
margin: auto;
text-align: center;
padding-top: 100px;
font-family: var(--font-family);
background: var(--bg-color-light);
position: relative;
z-index: 1;
}
/* Course Heading */
.course h1 {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-color);
text-transform: uppercase;
margin-bottom: 20px;
letter-spacing: 1px;
transition: color 0.3s ease;
}
.course h1:hover {
color: var(--hover-color); /* Hover effect for heading */
}
/* Course Subsection */
.course1 {
width: 80%;
margin: auto;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
/* Course Description Text */
p {
color: #777;
font-size: 1rem;
font-weight: 300;
line-height: 1.6;
padding: 10px;
}
/* Row Layout */
.row {
margin-top: 5%;
display: flex;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}
/* Course Column Styling */
.course-col {
flex-basis: 30%;
background: var(--card-bg-color);
border-radius: 15px;
padding: 25px 20px;
margin-bottom: 30px;
box-sizing: border-box;
box-shadow: 10px 10px 20px var(--shadow-color-light), -10px -10px 20px var(--text-color-light); /* Neumorphism shadow */
transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, background 0.3s ease;
position: relative;
overflow: hidden;
}
.course-col:hover {
transform: translateY(-10px) scale(1.05); /* 3D hover effect with scale */
box-shadow: 12px 12px 30px var(--shadow-color-dark), -12px -12px 30px var(--text-color-dark); /* Enhanced hover shadow */
filter: brightness(1.1); /* Brighten effect on hover */
background: var(--bg-color-light); /* Lighten the background on hover */
}
/* Course Column Heading */
.course-col h3 {
font-size: 1.3rem;
font-weight: 600;
color: var(--text-color-dark);
text-transform: capitalize;
text-align: center;
margin-top: 20px;
margin-bottom: 15px;
transition: color 0.3s ease, transform 0.3s ease;
}
.course-col h3:hover {
color: var(--primary-color); /* Change heading color on hover */
transform: translateY(-5px); /* Slight upward movement */
}
/* Course Column Description Text */
.course-col p {
font-size: 1rem;
color: #555;
line-height: 1.6;
text-align: center;
transition: color 0.3s ease, opacity 0.3s ease;
opacity: 0.9;
}
.course-col p:hover {
color: var(--text-color-dark); /* Change text color on hover */
opacity: 1; /* Fully opaque text on hover */
}
/* Gradient Overlay for Cards */
.course-col::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(36, 248, 199, 0.4), rgba(36, 248, 199, 0.1));
z-index: -1;
border-radius: 15px;
pointer-events: none;
}
/* Responsive Design for Smaller Screens */
@media (max-width: 1000px) {
.course-col {
flex-basis: 45%; /* Adjust for smaller screens */
}
}