-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1639 lines (1448 loc) · 106 KB
/
index.html
File metadata and controls
1639 lines (1448 loc) · 106 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO: Primary Meta Tags (Optimized for Click-Through Rate) -->
<title>Abrahams NCLEX | #1 NCLEX Coaching & Nursing Mentorship in Kerala</title>
<meta name="description" content="Pass NCLEX-RN with Abrahams NCLEX. Expert coaching by Accama Abraham, bilingual classes (Malayalam/English), and 1-on-1 mentorship. Open 7AM-10PM. Enroll for global nursing careers today!">
<meta name="keywords" content="NCLEX coaching Kerala, NCLEX-RN online course, Accama Abraham, nursing mentorship Trivandrum, nurse migration USA UK Australia, bilingual NCLEX training, Next Generation NCLEX">
<meta name="author" content="Abrahams NCLEX">
<meta name="robots" content="index, follow, max-image-preview:large">
<meta name="geo.region" content="IN-KL">
<meta name="geo.placename" content="Trivandrum">
<link rel="canonical" href="https://abrahamsnclex.com">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://abrahamsnclex.com/">
<meta property="og:title" content="Abrahams NCLEX | Master the Exam, Go Global">
<meta property="og:description" content="Premier NCLEX coaching helping nurses build global careers. Expert mentorship by Accama Abraham, flexible schedules, and proven results.">
<meta property="og:image" content="https://i.imgur.com/TRn2PDn.jpeg">
<meta property="og:site_name" content="Abrahams NCLEX">
<meta property="og:locale" content="en_IN">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://abrahamsnclex.com/">
<meta name="twitter:title" content="Abrahams NCLEX | Global Nursing Career Mentorship">
<meta name="twitter:description" content="Unlock your potential with expert NCLEX training. Join Accama Abraham for bilingual classes and comprehensive mentorship.">
<meta name="twitter:image" content="https://i.imgur.com/TRn2PDn.jpeg">
<!-- Enhanced Structured Data (JSON-LD) for Rich Results -->
<script type="application/ld+json">
[
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"@id": "https://abrahamsnclex.com/#organization",
"name": "Abrahams NCLEX",
"url": "https://abrahamsnclex.com",
"logo": "https://i.imgur.com/TRn2PDn.jpeg",
"image": "https://i.imgur.com/TRn2PDn.jpeg",
"description": "Premier NCLEX coaching institute in Kerala helping nurses build global careers. Expert mentorship by Accama Abraham.",
"slogan": "Unlock Your NCLEX Potential",
"telephone": "+91 99955 15565",
"email": "founder@abrahamsnclex.com",
"priceRange": "$$",
"address": {
"@type": "PostalAddress",
"streetAddress": "TC 16/1137, Panayil Lane, Kumarapuram",
"addressLocality": "Trivandrum",
"addressRegion": "Kerala",
"postalCode": "695011",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 8.5241,
"longitude": 76.9366
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
],
"opens": "07:00",
"closes": "22:00"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+91 99955 15565",
"contactType": "admissions",
"areaServed": "Global",
"availableLanguage": ["English", "Malayalam"]
},
"founder": {
"@type": "Person",
"name": "Accama Abraham",
"jobTitle": "Lead Mentor & Trainer",
"image": "https://i.imgur.com/mXs0cZV.jpeg",
"description": "Internationally acclaimed nursing leader with over 30 years of experience in transforming nursing practices."
},
"sameAs": [
"https://www.facebook.com/abrahamsnclex",
"https://www.instagram.com/abrahamsnclex",
"https://twitter.com/abrahamsnclex"
]
},
{
"@context": "https://schema.org",
"@type": "Course",
"name": "NCLEX-RN Preparation Course",
"description": "Comprehensive NCLEX training with mock tests, flexible scheduling, and bilingual support (English/Malayalam).",
"provider": {
"@type": "EducationalOrganization",
"name": "Abrahams NCLEX",
"sameAs": "https://abrahamsnclex.com"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "Blended",
"courseWorkload": "P3M"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "3",
"bestRating": "5",
"worstRating": "1"
},
"offers": {
"@type": "Offer",
"category": "Paid",
"availability": "https://schema.org/InStock",
"url": "https://abrahams.graphy.com/courses/NCLEX-in-3-Months--68016e9f000e7c0140714b0b"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How does the USA nursing licensure process work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The USA follows a structured, exam-centred licensure system. It requires Educational Credential Evaluation (e.g., CGFNS), proof of English Proficiency (IELTS/TOEFL), applying to a State Board of Nursing, and passing the mandatory NCLEX-RN Examination."
}
},
{
"@type": "Question",
"name": "Is NCLEX required for nursing in the UK?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No, the United Kingdom uses a Competency-Based Route without NCLEX. The process involves NMC Application, English Proficiency (IELTS/OET), a Computer-Based Test (CBT), and an Objective Structured Clinical Examination (OSCE) conducted in the UK."
}
},
{
"@type": "Question",
"name": "What is the Abrahams approach to NCLEX preparation?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We focus on subject mastery and clinical reasoning rather than rote memorization. Our systematic approach revisits core fundamentals like Patient Safety, Infection Control, and Pathophysiology, aligning preparation with the Next Generation NCLEX (NGN) standards."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://abrahamsnclex.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Mentorship",
"item": "https://abrahamsnclex.com/#mentor"
},
{
"@type": "ListItem",
"position": 3,
"name": "Program Details",
"item": "https://abrahamsnclex.com/#course-details"
}
]
},
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Abrahams NCLEX",
"url": "https://abrahamsnclex.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https://abrahamsnclex.com/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
]
</script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
}
h1, h2, h3, h4, .serif-font {
font-family: 'Playfair Display', serif;
}
/* --- Color Palette --- */
:root {
--primary: #13223f; /* Updated Brand Color */
--primary-light: #1e3a66;
--accent: #d97706; /* Amber 600 */
--accent-hover: #b45309;
}
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); }
.border-accent { border-color: var(--accent); }
/* --- Animations --- */
/* Core Fade Up Animation for Page Load */
.fade-in-up {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes fadeInUp {
to { opacity: 1; transform: translateY(0); }
}
/* --- Reveal On Scroll Animation System (Smoother Flow) --- */
.reveal-on-scroll {
opacity: 0;
/* Reduced translation distance for a subtler, quicker feel */
transform: translateY(20px);
/* Faster easing curve to make it feel responsive, not "stuck" */
transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
opacity: 1;
transform: translateY(0);
}
/* Reduced Delays to prevent lag sensation */
.delay-100 { transition-delay: 0.05s; animation-delay: 0.05s; }
.delay-200 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-300 { transition-delay: 0.15s; animation-delay: 0.15s; }
.delay-400 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-500 { transition-delay: 0.25s; animation-delay: 0.25s; }
/* Premium Shimmer Effect for Buttons */
.btn-shimmer {
position: relative;
overflow: hidden;
}
.btn-shimmer::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: 0.5s;
}
.btn-shimmer:hover::after {
left: 100%;
transition: 0.5s ease-in-out;
}
/* Moving Gradient Text Effect (Accent/Gold) */
.animate-gradient-text {
background: linear-gradient(90deg, var(--accent), #f59e0b, #d97706, var(--accent));
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent; /* Fallback */
animation: textShine 4s linear infinite;
}
/* Moving Gradient Text Effect (Primary/Blue) - UPDATED for Premium Feel */
.animate-gradient-primary {
/* Changed from bright blue to a subtle steel/metallic sheen */
background: linear-gradient(120deg, var(--primary) 40%, #3b5275 50%, var(--primary) 60%);
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent; /* Fallback */
/* Slowed down from 5s to 8s for elegance */
animation: textShine 8s linear infinite;
}
@keyframes textShine {
to { background-position: 200% center; }
}
/* Floating Blobs Background */
.blob {
position: absolute;
filter: blur(50px);
z-index: 0;
opacity: 0.6;
animation: float 10s infinite ease-in-out;
}
/* Mobile-First Positioning & Sizing */
.blob-1 {
background: #bfdbfe;
animation-delay: 0s;
/* Mobile dimensions */
width: 200px;
height: 200px;
top: 5%;
right: -10%;
}
.blob-2 {
background: #fde68a;
animation-delay: 5s;
/* Mobile dimensions */
width: 200px;
height: 200px;
bottom: 5%;
left: -10%;
}
/* Desktop Adjustments (Restoring original size/pos) */
@media (min-width: 768px) {
.blob-1 {
top: -10%;
right: -10%;
width: 400px;
height: 400px;
}
.blob-2 {
bottom: -10%;
left: -10%;
width: 300px;
height: 300px;
}
}
@keyframes float {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(20px, -20px); }
}
/* 3D Tilt Card Base Styles */
.tilt-card {
/* UPDATED: Removed default transition here to eliminate input lag.
Transitions are now managed in JS (instant on move, smooth on leave). */
will-change: transform;
transform-style: preserve-3d;
}
/* Hover Effects */
.feature-card {
/* Standard hover fallback if JS fails */
border-bottom: 3px solid transparent;
}
.feature-card:hover {
box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
border-bottom-color: var(--accent);
}
.image-hover-zoom {
overflow: hidden;
border-radius: 8px;
}
.image-hover-zoom img {
transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-hover-zoom:hover img {
transform: scale(1.08);
}
/* Buttons */
.btn-primary {
background-color: var(--primary);
color: white;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: var(--primary-light);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(19, 34, 63, 0.3);
}
.btn-accent {
background-color: var(--accent);
color: white;
transition: all 0.3s ease;
}
.btn-accent:hover {
background-color: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}
html { scroll-behavior: smooth; }
.hidden-view { display: none; }
/* Testimonial Transitions */
.testimonial-fade {
transition: opacity 0.5s ease-in-out;
}
.testimonial-hidden {
opacity: 0;
}
.testimonial-visible {
opacity: 1;
}
/* Sidebar Navigation Styling */
.nav-card {
background: white;
border: 1px solid #f1f5f9;
border-radius: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
}
.sidebar-link {
display: flex;
align-items: center;
justify-content: space-between; /* Space for icon */
padding: 1rem 1.25rem;
color: #64748b; /* slate-500 */
font-size: 0.875rem; /* text-sm */
font-weight: 500;
transition: all 0.2s ease;
border-left: 3px solid transparent;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.sidebar-link:hover {
color: var(--primary);
background-color: #f8fafc;
padding-left: 1.5rem; /* Slight shift on hover */
}
.sidebar-link.active {
color: var(--primary);
border-left-color: var(--accent);
background-color: #f0f9ff; /* Very light blue */
font-weight: 700;
}
.sidebar-link i {
opacity: 0;
transform: translateX(-5px);
transition: all 0.2s ease;
color: var(--accent);
}
.sidebar-link.active i {
opacity: 1;
transform: translateX(0);
}
/* Mobile Horizontal Scroll Snap */
.mobile-scroll-nav {
-webkit-overflow-scrolling: touch;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
}
.mobile-scroll-nav::-webkit-scrollbar {
display: none; /* Chrome/Safari */
}
</style>
</head>
<body class="bg-slate-50 text-slate-800 flex flex-col min-h-screen">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-primary border-b border-white/10 transition-all duration-300 shadow-md">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="flex justify-between items-center h-24">
<!-- Logo -->
<div class="flex-shrink-0 flex items-center">
<a href="#" onclick="switchView('home'); return false;" class="flex items-center gap-3">
<!-- Primary Image Logo -->
<img src="https://i.imgur.com/TRn2PDn.jpeg"
alt="Abrahams NCLEX Logo"
class="h-20 w-auto object-contain"
onerror="this.style.display='none'; document.getElementById('nav-logo-text').classList.remove('hidden');">
<!-- Fallback Text Logo -->
<span id="nav-logo-text" class="hidden serif-font text-3xl font-bold tracking-wide text-white">
ABRAHAMS <span class="text-accent italic text-2xl">NCLEX</span>
</span>
</a>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-10 items-center">
<a href="#home" onclick="switchView('home')" class="text-xs uppercase tracking-[0.2em] font-semibold text-slate-300 hover:text-white transition-colors">Home</a>
<a href="#program" onclick="switchView('home')" class="text-xs uppercase tracking-[0.2em] font-semibold text-slate-300 hover:text-white transition-colors">Program</a>
<a href="#mentor" onclick="switchView('home')" class="text-xs uppercase tracking-[0.2em] font-semibold text-slate-300 hover:text-white transition-colors">Mentorship</a>
<a href="#testimonials" onclick="switchView('home'); document.getElementById('philosophy').scrollIntoView();" class="text-xs uppercase tracking-[0.2em] font-semibold text-slate-300 hover:text-white transition-colors">Stories</a>
<!-- Login Link (Reverted to text style) -->
<a href="https://abrahams.graphy.com/t/home" target="_blank" class="text-xs uppercase tracking-[0.2em] font-semibold text-slate-300 hover:text-white transition-colors">Login</a>
<a href="https://abrahams.graphy.com/courses/NCLEX-in-3-Months--68016e9f000e7c0140714b0b" target="_blank" class="whitespace-nowrap btn-shimmer px-8 py-3 bg-white text-primary text-xs uppercase tracking-[0.2em] font-bold rounded-sm hover:bg-slate-100 transition-all shadow-md hover:shadow-lg">Enroll Now</a>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden">
<button id="mobile-menu-btn" class="text-white p-2" aria-label="Toggle Mobile Menu">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-slate-100 absolute w-full shadow-xl">
<div class="px-6 py-6 space-y-4 flex flex-col items-center">
<!-- UPDATED: Added closeMobileMenu() to onclick events for better UX -->
<a href="#" onclick="switchView('home'); closeMobileMenu();" class="text-sm uppercase tracking-widest font-semibold text-slate-800 py-2 hover:text-accent">Home</a>
<a href="#program" onclick="switchView('home'); closeMobileMenu();" class="text-sm uppercase tracking-widest font-semibold text-slate-800 py-2 hover:text-accent">Program</a>
<a href="#mentor" onclick="switchView('home'); closeMobileMenu();" class="text-sm uppercase tracking-widest font-semibold text-slate-800 py-2 hover:text-accent">Mentorship</a>
<a href="https://abrahams.graphy.com/t/home" target="_blank" class="text-sm uppercase tracking-widest font-semibold text-slate-800 py-2 hover:text-accent">Login</a>
<a href="https://abrahams.graphy.com/courses/NCLEX-in-3-Months--68016e9f000e7c0140714b0b" target="_blank" class="text-sm uppercase tracking-widest font-bold text-accent py-2">Enroll Now</a>
</div>
</div>
</nav>
<!-- MAIN HOME VIEW CONTAINER -->
<main id="home-view">
<!-- Hero Section -->
<header id="hero-header" class="relative pt-28 pb-16 lg:pt-48 lg:pb-32 px-6 flex flex-col items-center justify-center min-h-screen overflow-hidden bg-gradient-to-b from-slate-50 via-white to-blue-50">
<!-- Floating Background Elements -->
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="max-w-5xl mx-auto text-center z-10 relative">
<h1 class="fade-in-up delay-100 leading-tight mb-8">
<!-- Tier 1: Lead-in -->
<span class="block text-base md:text-xl font-medium tracking-[0.3em] text-slate-500 uppercase mb-4">
Unlock Your
</span>
<!-- Tier 2: Main Subject - UPDATED: Reverted to solid text-primary for maximum clarity/punch -->
<span class="block serif-font text-5xl md:text-8xl lg:text-9xl font-bold text-primary mb-2 drop-shadow-sm">
NCLEX
</span>
<!-- Tier 3: Dynamic Closing - UPDATED: Reverted to text-accent but KEPT the structure -->
<span class="block serif-font text-4xl md:text-6xl lg:text-7xl font-medium italic text-accent relative inline-block">
Potential
<!-- UPDATED: Changed text-accent/30 to text-accent opacity-30 to ensure visibility against transparent parent text -->
<svg class="absolute w-full h-3 -bottom-2 left-0 text-accent -z-10 drop-shadow-sm" viewBox="0 0 100 10" preserveAspectRatio="none">
<path d="M0 5 Q 50 10 100 5" stroke="currentColor" stroke-width="4" fill="none" />
</svg>
</span>
</h1>
<p class="fade-in-up delay-200 text-lg md:text-xl text-slate-600 font-light max-w-2xl mx-auto leading-relaxed mb-12">
Gain the confidence you need to appear for the NCLEX exam. We are your partner in building a rewarding <strong class="text-primary font-medium">global nursing career</strong>.
</p>
<div class="fade-in-up delay-300 flex flex-col sm:flex-row justify-center gap-6">
<a href="https://abrahams.graphy.com/courses/NCLEX-in-3-Months--68016e9f000e7c0140714b0b" target="_blank" class="btn-primary btn-shimmer group inline-flex items-center justify-center px-8 py-4 text-xs uppercase tracking-widest font-bold rounded-sm shadow-lg hover:shadow-xl">
Begin Your Journey
<i data-lucide="arrow-right" class="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform"></i>
</a>
<a href="#about" class="group inline-flex items-center justify-center space-x-2 text-primary border-b-2 border-transparent hover:border-accent pb-1 transition-all">
<span class="text-xs uppercase tracking-widest font-bold">Explore Program</span>
<i data-lucide="chevron-down" class="w-4 h-4 text-accent group-hover:translate-y-1 transition-transform"></i>
</a>
</div>
</div>
</header>
<!-- About / Intro Section -->
<section id="about" class="py-20 lg:py-32 bg-gradient-to-b from-blue-50 via-white to-white relative overflow-hidden">
<!-- Subtle Animated Mesh Background -->
<div class="absolute inset-0 pointer-events-none">
<div class="absolute top-0 left-1/4 w-[500px] h-[500px] bg-blue-50/50 rounded-full mix-blend-multiply filter blur-[80px] opacity-70 animate-float"></div>
<div class="absolute bottom-0 right-1/4 w-[500px] h-[500px] bg-orange-50/50 rounded-full mix-blend-multiply filter blur-[80px] opacity-70 animate-float" style="animation-delay: 2s"></div>
</div>
<div class="max-w-4xl mx-auto px-6 relative z-10 text-center">
<h2 class="reveal-on-scroll serif-font text-3xl md:text-5xl lg:text-6xl text-primary mb-10 leading-tight">
Whether you're aspiring to work abroad or seeking to enhance your clinical knowledge, <span class="italic text-accent font-medium relative inline-block">
Abrahams
<span class="absolute bottom-1 left-0 w-full h-2 bg-accent/10 -z-10 transform -rotate-1"></span>
</span> is your trusted partner.
</h2>
<div class="reveal-on-scroll delay-100 flex justify-center mb-10">
<div class="w-24 h-1.5 rounded-full bg-gradient-to-r from-blue-200 via-accent to-blue-200 opacity-80"></div>
</div>
<p class="reveal-on-scroll delay-200 text-slate-600 font-light leading-loose text-lg md:text-xl max-w-2xl mx-auto">
We focus on your success and global career opportunities through a unique blend of <strong class="text-primary font-medium">deep clinical knowledge</strong> and <strong class="text-primary font-medium">practical skill-building</strong>.
</p>
</div>
</section>
<!-- Program Features Grid with 3D Tilt Cards -->
<section id="program" class="py-16 lg:py-24 bg-gradient-to-b from-white to-slate-50">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="flex flex-col md:flex-row justify-between items-end mb-16 reveal-on-scroll">
<div>
<span class="text-xs uppercase tracking-[0.2em] text-accent font-bold block mb-4">Why Choose Us</span>
<h2 class="serif-font text-3xl md:text-4xl text-primary font-bold">Curated for Excellence</h2>
</div>
<a href="https://abrahams.graphy.com/courses/NCLEX-in-3-Months--68016e9f000e7c0140714b0b" target="_blank" class="hidden md:inline-block text-xs uppercase tracking-widest border border-slate-300 px-6 py-3 hover:border-primary hover:text-primary transition-all font-semibold">Enroll Today</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 lg:gap-8">
<!-- Feature 1 -->
<!-- UPDATED: Adjusted padding to p-6 for mobile, md:p-10 for desktop -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-100">
<div class="w-12 h-12 bg-blue-50 rounded-lg flex items-center justify-center mb-6 group-hover:bg-primary transition-colors">
<i data-lucide="clock" class="w-6 h-6 text-primary group-hover:text-accent transition-colors"></i>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Flexible Schedule</h3>
<p class="text-slate-600 text-sm leading-relaxed">
Attend live classes or cover at your own pace with our comprehensive library of recorded sessions.
</p>
</div>
<!-- Feature 2 -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-200">
<div class="w-12 h-12 bg-orange-50 rounded-lg flex items-center justify-center mb-6 group-hover:bg-accent transition-colors">
<i data-lucide="check-square" class="w-6 h-6 text-accent group-hover:text-primary transition-colors"></i>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Mock Tests</h3>
<p class="text-slate-600 text-sm leading-relaxed">
Keep practicing with regular Mock Tests designed to simulate the real exam environment.
</p>
</div>
<!-- Feature 3 -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-300">
<div class="w-12 h-12 bg-blue-50 rounded-lg flex items-center justify-center mb-6 group-hover:bg-primary transition-colors">
<i data-lucide="users" class="w-6 h-6 text-primary group-hover:text-accent transition-colors"></i>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Small Batches</h3>
<p class="text-slate-600 text-sm leading-relaxed">
We maintain small batch sizes to ensure personalized attention and interaction for every student.
</p>
</div>
<!-- Feature 4 -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-100">
<div class="w-12 h-12 bg-orange-50 rounded-lg flex items-center justify-center mb-6 group-hover:bg-accent transition-colors">
<i data-lucide="user-check" class="w-6 h-6 text-accent group-hover:text-primary transition-colors"></i>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Personal Mentorship</h3>
<p class="text-slate-600 text-sm leading-relaxed">
One-on-one mentorship and interaction sessions to guide you through difficult concepts.
</p>
</div>
<!-- Feature 5 -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-200">
<div class="w-12 h-12 bg-blue-50 rounded-lg flex items-center justify-center mb-6 group-hover:bg-primary transition-colors">
<i data-lucide="zap" class="w-6 h-6 text-primary group-hover:text-accent transition-colors"></i>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Fast Track</h3>
<p class="text-slate-600 text-sm leading-relaxed">
Efficient course structure with completion targeted in 3 months for rapid career progression.
</p>
</div>
<!-- Feature 6 -->
<div class="tilt-card feature-card bg-white p-6 md:p-10 shadow-sm rounded-lg border border-slate-100 group reveal-on-scroll delay-300">
<!-- Updated Container: Removed flex centering, added relative for absolute positioning -->
<div class="w-12 h-12 bg-orange-50 rounded-lg mb-6 group-hover:bg-accent transition-colors relative">
<!-- Custom Bilingual Icon: Diagonal Placement -->
<span class="absolute top-1.5 left-2.5 text-accent group-hover:text-primary transition-colors font-serif font-bold text-lg leading-none">A</span>
<span class="absolute bottom-1 right-2 text-accent group-hover:text-primary transition-colors font-sans font-bold text-xl leading-none">അ</span>
</div>
<h3 class="serif-font text-xl mb-3 text-primary font-bold">Bilingual Classes</h3>
<p class="text-slate-600 text-sm leading-relaxed">
Specialized Malayalam & English classes focused specifically on the needs of Nurses from Kerala.
</p>
</div>
</div>
</div>
</section>
<!-- Mentor Section -->
<section id="mentor" class="pt-16 pb-16 lg:pt-32 lg:pb-24 bg-white relative">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<!-- UPDATED LAYOUT: Enforced Flex Row on all devices (with size adjustments for mobile) -->
<div class="flex flex-row items-center gap-4 lg:gap-20">
<!-- Image Block: Adjusted to be smaller (1/3 width) to prevent "too big" rendering, but NO inner limits -->
<div class="w-1/3 md:w-2/5 lg:w-1/2 flex-shrink-0 reveal-on-scroll">
<div class="relative w-full">
<!-- Using unique ID for home page image to avoid duplication conflicts -->
<div id="mentor-photo-home" class="w-full flex items-center justify-center text-slate-300">
<div class="text-center py-20 bg-slate-50 w-full rounded-2xl" id="mentor-photo-fallback-home">
<i data-lucide="image" class="w-12 h-12 mx-auto mb-2 opacity-50 text-accent"></i>
<span class="text-xs uppercase tracking-widest font-bold">Mentor: Accama Abraham</span>
</div>
<!-- The actual image will be injected here by JavaScript -->
</div>
</div>
</div>
<!-- Text Block: Adjusted to take up more space (2/3 width) -->
<div class="w-2/3 md:w-3/5 lg:w-1/2 reveal-on-scroll delay-200">
<div class="flex items-center gap-2 md:gap-3 mb-2 md:mb-4">
<div class="h-px w-4 md:w-8 bg-accent"></div>
<span class="text-[10px] md:text-xs uppercase tracking-[0.2em] text-accent font-bold">Lead Mentor</span>
</div>
<!-- Responsive Text Sizing -->
<h2 class="serif-font text-xl sm:text-2xl md:text-4xl lg:text-5xl text-primary mb-2 md:mb-6 font-bold leading-tight">Accama Abraham</h2>
<p class="text-slate-500 italic mb-4 md:mb-8 text-xs md:text-lg font-medium">Recognized Nursing Leader & Trainer</p>
<div class="space-y-3 md:space-y-6 text-slate-600 font-light leading-relaxed text-xs md:text-lg">
<p class="line-clamp-4 md:line-clamp-none">
She has remained a sought-after guide for nurses from diverse backgrounds. What sets her apart is the ability to connect with students, personalise learning paths and simplify even the trickiest topics.
</p>
<p class="hidden md:block">
You're in safe hands, whether you're just starting or re-attempting the exam.
</p>
</div>
<div class="mt-6 md:mt-12 flex flex-wrap gap-4">
<button type="button" onclick="switchView('mentor')" class="btn-accent inline-flex items-center space-x-2 px-6 py-2 md:px-8 md:py-3 rounded-sm font-bold text-[10px] md:text-xs uppercase tracking-widest shadow-lg cursor-pointer hover:scale-105 transition-transform duration-200">
<span>Know More</span>
<i data-lucide="arrow-right" class="w-3 h-3 md:w-4 md:h-4"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Philosophy / Mission / Testimonials Slider -->
<section id="philosophy" class="pt-16 lg:pt-24 pb-0 bg-primary text-white relative overflow-hidden">
<!-- Background Texture -->
<div class="absolute inset-0 opacity-10 pointer-events-none">
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse">
<path d="M 40 0 L 0 0 0 40" fill="none" stroke="currentColor" stroke-width="0.5"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#grid)" />
</svg>
</div>
<!-- Abstract Decoration -->
<div class="absolute top-0 right-0 w-96 h-96 bg-accent/20 rounded-full blur-[100px] -translate-y-1/2 translate-x-1/2 pointer-events-none"></div>
<div class="absolute bottom-0 left-0 w-64 h-64 bg-blue-500/10 rounded-full blur-[80px] translate-y-1/2 -translate-x-1/2 pointer-events-none"></div>
<div class="max-w-7xl mx-auto px-6 lg:px-12 relative z-10">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-20 items-center">
<!-- Left: Philosophy Text -->
<div class="order-2 lg:order-1 pb-24 lg:pb-40 reveal-on-scroll">
<div class="flex items-center gap-3 mb-6">
<span class="w-12 h-0.5 bg-accent"></span>
<span class="text-accent font-bold uppercase tracking-[0.2em] text-xs">Our Philosophy</span>
</div>
<h2 class="serif-font text-4xl md:text-5xl mb-8 font-bold leading-tight">Beyond The Exam.<br>Ready for the World.</h2>
<p class="text-blue-100 font-light leading-loose mb-8 text-lg opacity-90">
ABRAHAMS believes that NCLEX success is just the beginning. Our mission is to enrich nurses' knowledge with thorough subject mastery, empowering them to excel in their roles and elevate their careers to new heights.
</p>
<p class="text-blue-100 font-light leading-loose text-lg opacity-90">
By fostering deep subject proficiency and critical skills, we aim to nurture globally competitive nursing professionals who deliver exceptional patient care.
</p>
</div>
<!-- Right: Impressive Testimonial Card -->
<div class="order-1 lg:order-2 relative perspective-1000 pb-24 lg:pb-40 reveal-on-scroll delay-200">
<!-- Main White Card -->
<div id="testimonial-card" class="relative bg-white/5 backdrop-blur-md border border-white/10 text-white p-6 md:p-12 rounded-2xl shadow-2xl overflow-hidden min-h-[300px] md:min-h-[400px] flex flex-col justify-between transform transition-all duration-500 hover:-translate-y-1">
<!-- Giant Decorative Quote -->
<div class="absolute -top-6 -left-2 text-[6rem] md:text-[10rem] leading-none text-white/5 serif-font select-none z-0">"</div>
<!-- Content Wrapper -->
<div class="relative z-10 flex-grow flex flex-col justify-center">
<div id="testimonial-content-wrapper" class="transition-all duration-500 transform translate-y-0 opacity-100">
<!-- Stars -->
<div class="flex gap-1 mb-6 text-accent">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
<blockquote id="testimonial-text" class="serif-font text-xl md:text-2xl font-medium leading-relaxed mb-8 text-white">
"Abrahams is a game-changer. The emphasis on subject mastery boosted my confidence in appearing for NCLEX."
</blockquote>
<div class="flex items-center gap-4">
<div class="w-12 h-12 rounded-full bg-accent flex items-center justify-center text-primary font-bold text-lg shadow-lg">
<span id="testimonial-avatar">N</span>
</div>
<div>
<cite id="testimonial-author" class="not-italic block text-sm font-bold uppercase tracking-widest text-white">Neena</cite>
<span id="testimonial-role" class="block text-xs font-semibold text-blue-200 mt-0.5">Registered Nurse</span>
</div>
</div>
</div>
</div>
<!-- Progress Bar -->
<div class="absolute bottom-0 left-0 w-full h-1 bg-white/10">
<div id="progress-bar" class="h-full bg-accent w-0"></div>
</div>
<!-- Navigation Arrows (Absolute) -->
</div>
</div>
</div>
</div>
<!-- Flow Connector Gradient (Enhanced Blend) -->
<div class="absolute bottom-0 left-0 w-full h-48 bg-gradient-to-b from-transparent to-primary z-20 pointer-events-none"></div>
</section>
<!-- Contact Section (Premium High Contrast - Seamless Flow, Clean Background) -->
<section id="contact" class="pt-0 pb-16 lg:pb-24 bg-primary relative overflow-hidden">
<!-- BLEND FIX: Top Fade from Solid Color -->
<div class="absolute top-0 left-0 w-full h-48 bg-gradient-to-b from-primary to-transparent z-10 pointer-events-none"></div>
<!-- Connecting Beam (Flows through the blend) -->
<div class="absolute top-[-100px] left-1/2 w-px h-64 bg-gradient-to-b from-transparent via-accent/50 to-transparent -translate-x-1/2 z-30"></div>
<!-- Glowing Dot at Junction -->
<div class="absolute top-0 left-1/2 w-1.5 h-1.5 rounded-full bg-accent -translate-x-1/2 z-30 shadow-[0_0_15px_2px_rgba(217,119,6,0.6)]"></div>
<!-- Content Container -->
<div class="max-w-6xl mx-auto px-6 lg:px-12 relative z-20 pt-24">
<div class="text-center mb-20 reveal-on-scroll">
<!-- Clean Label -->
<h4 class="text-accent font-bold uppercase tracking-[0.25em] text-xs mb-6 drop-shadow-[0_0_8px_rgba(217,119,6,0.3)]">
Get In Touch
</h4>
<h2 class="serif-font text-4xl md:text-5xl lg:text-7xl text-white font-bold mb-8">
Ready to Go Global?
</h2>
<p class="text-blue-100/80 font-light max-w-2xl mx-auto text-lg leading-relaxed">
Your international nursing career begins with a single step. Reach out to our admissions team today.
</p>
</div>
<!-- New Open Layout (No Boxes) -->
<div class="border-t border-white/10 pt-16 grid grid-cols-1 md:grid-cols-3 gap-12 md:gap-8">
<!-- Email -->
<a href="mailto:founder@abrahamsnclex.com" class="group flex flex-col items-center text-center reveal-on-scroll delay-100">
<div class="w-20 h-20 rounded-full bg-white/5 border border-white/10 flex items-center justify-center text-white mb-6 group-hover:bg-accent group-hover:border-accent group-hover:scale-110 transition-all duration-300 shadow-lg">
<i data-lucide="mail" class="w-8 h-8"></i>
</div>
<h3 class="serif-font text-2xl text-white mb-3 group-hover:text-accent transition-colors">Email Us</h3>
<span class="text-blue-200 font-light text-base break-words hover:text-white transition-colors">founder@abrahamsnclex.com</span>
</a>
<!-- Phone -->
<a href="tel:+919995515565" class="group flex flex-col items-center text-center reveal-on-scroll delay-200">
<div class="w-20 h-20 rounded-full bg-white/5 border border-white/10 flex items-center justify-center text-white mb-6 group-hover:bg-accent group-hover:border-accent group-hover:scale-110 transition-all duration-300 shadow-lg">
<i data-lucide="phone" class="w-8 h-8"></i>
</div>
<h3 class="serif-font text-2xl text-white mb-3 group-hover:text-accent transition-colors">Call Us</h3>
<span class="text-blue-200 font-light text-base hover:text-white transition-colors block">+91 99955 15565</span>
<span class="text-blue-200/50 text-xs uppercase tracking-widest mt-2 block">7 am to 10pm</span>
</a>
<!-- Location -->
<div class="group flex flex-col items-center text-center cursor-default reveal-on-scroll delay-300">
<div class="w-20 h-20 rounded-full bg-white/5 border border-white/10 flex items-center justify-center text-white mb-6 group-hover:bg-accent group-hover:border-accent group-hover:scale-110 transition-all duration-300 shadow-lg">
<i data-lucide="map-pin" class="w-8 h-8"></i>
</div>
<h3 class="serif-font text-2xl text-white mb-3 group-hover:text-accent transition-colors">Address</h3>
<span class="text-blue-200 font-light text-base block">TC 16/1137, Panayil Lane<br>Kumarapuram, Trivandrum</span>
</div>
</div>
</div>
</section>
</main>
<!-- MENTOR PROFILE & PROGRAM DETAILS VIEW -->
<div id="mentor-view" class="hidden-view pt-32 pb-24 bg-slate-50 min-h-screen">
<!-- Sticky Navigation Bar for Profile -->
<!-- UPDATED: Changed top-24 to top-28 to create space below the header -->
<div class="fixed top-28 left-0 w-full z-30 pointer-events-none">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<button onclick="switchView('home')" class="pointer-events-auto inline-flex items-center px-4 py-2 bg-white/90 backdrop-blur-md border border-slate-200 rounded-full shadow-sm text-sm font-bold text-slate-600 hover:text-primary hover:border-primary transition-all group" aria-label="Back to Home">
<i data-lucide="arrow-left" class="w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"></i> Back to Home
</button>
</div>
</div>
<div class="max-w-7xl mx-auto px-6 lg:px-12 pt-12">
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12 lg:gap-20">
<!-- LEFT COLUMN: Navigation (Static) -->
<aside class="lg:col-span-4">
<div class="space-y-8">
<!-- Desktop Sidebar Navigation -->
<div class="hidden lg:block nav-card overflow-hidden">
<div class="p-5 border-b border-slate-100 bg-slate-50/50">
<h4 class="text-[10px] uppercase tracking-[0.2em] font-extrabold text-primary/70">Content Guide</h4>
</div>
<nav class="p-2 space-y-1" id="desktop-toc">
<a href="#sec-mission" class="sidebar-link rounded-md">
<span>Mission & Vision</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-about" class="sidebar-link rounded-md">
<span>About Abrahams</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-approach" class="sidebar-link rounded-md">
<span>Systematic Approach</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-prep" class="sidebar-link rounded-md">
<span>NCLEX Preparation</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-global" class="sidebar-link rounded-md">
<span>Global Pathways</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-mentor" class="sidebar-link rounded-md">
<span>Mentorship & Bio</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-transform" class="sidebar-link rounded-md">
<span>Transforming Practice</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
<a href="#sec-empower" class="sidebar-link rounded-md">
<span>Empowering Nurses</span>
<i data-lucide="chevron-right" class="w-4 h-4"></i>
</a>
</nav>
</div>
</div>
</aside>
<!-- RIGHT COLUMN: Detailed Literature -->
<article class="lg:col-span-8 space-y-16 pb-20">
<!-- Mobile Nav (Visible only on mobile/tablet - Scrolls with content) -->
<div class="lg:hidden z-20 -mx-6 bg-white/95 backdrop-blur shadow-sm border-b border-slate-100 overflow-x-auto mobile-scroll-nav">
<div class="flex gap-4 px-6 py-4 whitespace-nowrap text-xs font-bold uppercase tracking-widest text-slate-500">
<a href="#sec-mission" class="hover:text-primary">Mission</a>
<a href="#sec-about" class="hover:text-primary">About</a>
<a href="#sec-approach" class="hover:text-primary">Approach</a>
<a href="#sec-prep" class="hover:text-primary">NCLEX</a>
<a href="#sec-global" class="hover:text-primary">Global</a>
<a href="#sec-mentor" class="hover:text-primary">Mentor</a>
<a href="#sec-empower" class="hover:text-primary">Empower</a>
</div>
</div>
<!-- 1. HOME / MISSION -->
<div id="sec-mission" class="section-content space-y-6 scroll-mt-32">
<span class="inline-block px-3 py-1 bg-accent/10 text-accent text-xs font-bold uppercase tracking-widest rounded-full">Overview</span>
<h2 class="serif-font text-3xl md:text-4xl font-bold text-primary">Your Skills Are Needed Worldwide</h2>
<div class="prose text-slate-600 leading-loose text-lg space-y-4">
<p>Nursing is a profession built on knowledge, responsibility, and human connection. Across healthcare systems worldwide, nurses are no longer seen merely as task performers, but as critical thinkers who assess, prioritise, intervene, and evaluate patient care independently.</p>
<p>At Abrahams, we recognise this global shift in nursing practice. Our focus is on strengthening the academic and clinical foundations that allow nurses to meet international expectations with clarity and confidence. Through structured NCLEX preparation and deep subject enrichment, we help nurses revisit core concepts, sharpen clinical reasoning, and prepare for global licensure standards in an ethical and methodical manner.</p>
<p class="italic font-medium text-primary">Abrahams is not built on shortcuts or promises. It is built on knowledge, discipline, and respect for the nursing profession.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-8">
<div class="bg-white p-6 rounded-lg shadow-sm border border-slate-100">
<h4 class="font-bold text-primary uppercase tracking-widest text-xs mb-3">Our Mission</h4>
<p class="text-sm text-slate-600 leading-relaxed">To enrich knowledge through high-quality nursing education, empower nurses with critical thinking and professional skills, and elevate careers by preparing them for global healthcare excellence.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-slate-100">
<h4 class="font-bold text-primary uppercase tracking-widest text-xs mb-3">Our Vision</h4>
<p class="text-sm text-slate-600 leading-relaxed">To be a globally recognized training hub that empowers nurses with the knowledge, skills, and critical thinking needed to excel in licensure exams and thrive as competent, job-ready professionals.</p>
</div>
</div>
<!-- NEW: Core Values List -->
<div class="bg-slate-50 p-6 rounded-lg border border-slate-100 mt-6">
<h4 class="font-bold text-primary uppercase tracking-widest text-xs mb-4">Our Core Values</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm text-slate-600">
<ul class="space-y-2 list-disc pl-5">
<li><strong>Excellence:</strong> Committed to international standards.</li>
<li><strong>Critical Thinking:</strong> Cultivating analytical skills.</li>
<li><strong>Compassion:</strong> Instilling empathy and ethics.</li>
</ul>
<ul class="space-y-2 list-disc pl-5">
<li><strong>Empowerment:</strong> Equipping nurses to lead.</li>
<li><strong>Integrity:</strong> Upholding professional honesty.</li>