-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1885 lines (1828 loc) · 150 KB
/
index.html
File metadata and controls
1885 lines (1828 loc) · 150 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="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOGIN LEARNING Co. - เรียนรู้และเติบโตด้านวิศวกรรม</title>
<script src="https://cdn.tailwindcss.com"></script> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> <style>
/* General Styles */
body {
font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f4f8; /* Light Grayish Blue */
color: #333; /* Dark Gray */
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
overflow: hidden; /* To contain floats */
}
h1, h2, h3, h4, h5 {
color: #003366; /* Dark Navy Blue */
}
/* Header & Navigation */
header {
background: linear-gradient(90deg, #003366 0%, #005a9c 100%); /* Dark Navy to Medium Blue gradient */
color: #ffffff; /* White */
padding: 1rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img {
height: 60px;
width: auto;
max-width: 220px;
transition: transform 0.3s ease;
}
.logo img:hover {
transform: scale(1.05);
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
color: #ffffff; /* White */
text-decoration: none;
font-weight: 500;
padding: 8px 15px;
border-radius: 20px; /* Rounded pill shape for links */
transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}
nav ul li a::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background-color: #87cefa; /* Light Sky Blue */
transition: all 0.3s ease;
transform: translateX(-50%);
}
nav ul li a:hover,
nav ul li a.active {
background-color: rgba(255,255,255,0.1); /* Slight white transparent background */
color: #e0f7fa; /* Lighter Cyan */
box-shadow: 0 0 10px rgba(135, 206, 250, 0.5); /* Light blue glow */
}
nav ul li a:hover::before,
nav ul li a.active::before {
width: 70%;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 90, 156, 0.75)), url('https://www.dia.co.th/wp-content/uploads/2024/08/dIA-Jun-3-2.jpg') no-repeat center center;
background-size: cover;
color: #ffffff; /* White */
padding: 6rem 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: #ffffff; /* White */
font-weight: 700;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero p {
font-size: 1.4rem;
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
opacity: 0.9;
}
.cta-button {
background: linear-gradient(45deg, #007bff, #0056b3); /* Bright Blue to Darker Blue gradient */
color: #ffffff; /* White */
padding: 18px 35px;
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
border-radius: 50px; /* Pill shape */
transition: all 0.3s ease;
border: none;
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
display: inline-block;
}
.cta-button:hover {
background: linear-gradient(45deg, #0056b3, #007bff); /* Reversed gradient on hover */
transform: translateY(-3px) scale(1.05);
box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}
/* Section Styling */
.section {
padding: 4rem 0;
}
.section:not(:last-of-type) {
border-bottom: 1px solid #dde4e9; /* Light Gray border */
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 1.8rem;
color: #005a9c; /* Medium Blue */
padding-bottom: 0.8rem;
border-bottom: 3px solid #007bff; /* Bright Blue underline */
display: inline-block;
font-weight: 600;
}
.section-title-wrapper {
text-align: center;
margin-bottom: 3rem;
}
/* Faculty Category Block */
.faculty-category-block {
background-color: #ffffff; /* White */
padding: 30px;
border-radius: 12px;
margin-bottom: 3rem;
box-shadow: 0 8px 25px rgba(0, 90, 156, 0.1); /* Soft shadow */
}
.faculty-category-block:last-child {
margin-bottom: 0;
}
/* Program Card Styling (New Template for ALL sections) */
.program-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.program-card-new {
background-color: #ffffff; /* White */
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 90, 156, 0.12); /* Subtle shadow */
display: flex;
flex-direction: column;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card-new:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 90, 156, 0.18); /* Enhanced shadow on hover */
}
.program-card-new-header {
background: linear-gradient(135deg, #005a9c 0%, #007bff 100%); /* Medium Blue to Bright Blue gradient */
color: #ffffff; /* White */
padding: 18px 25px;
display: flex;
align-items: center;
gap: 18px;
}
.program-card-new-header img.program-card-logo {
height: 55px;
width: 55px;
object-fit: contain;
background-color: rgba(255,255,255,0.9); /* Semi-transparent white background for logo */
border-radius: 50%;
padding: 5px;
border: 2px solid #ffffff; /* White border for logo */
}
.program-card-new-header .uni-program-name h5 {
margin: 0;
font-size: 1.35rem;
color: #ffffff; /* White */
font-weight: 600;
}
.program-card-new-header .uni-program-name .program-card-subheader {
font-size: 1rem;
color: #e0f7fa; /* Lighter Cyan */
margin-top: 4px;
opacity: 0.9;
}
.program-card-new-body {
padding: 25px;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.requirements-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 18px;
margin-bottom: 20px;
}
.requirement-block {
background-color: #e9f1f6; /* Very Light Blue */
padding: 15px;
border-radius: 8px;
border: 1px solid #d1e3ff; /* Light Blue border */
}
.requirement-block h6 {
margin: 0 0 10px 0;
font-size: 0.95rem;
color: #003366; /* Dark Navy Blue */
font-weight: 600;
border-bottom: 1px solid #b3d1ff; /* Medium Light Blue underline */
padding-bottom: 6px;
}
.requirement-block p, .requirement-block ul {
margin: 0;
font-size: 0.88rem;
color: #334155; /* Slate Gray */
}
.requirement-block ul {
list-style: none; padding-left: 0;
}
.requirement-block ul li {
margin-bottom: 4px;
}
.requirement-block .score {
font-weight: bold;
color: #005a9c; /* Medium Blue */
font-size: 1.15em;
}
.program-card-new .popular-majors-info {
margin-top: auto;
padding-top: 15px;
text-align: center;
position: relative; /* For popup positioning */
}
.program-card-new .popular-majors-trigger {
background: linear-gradient(45deg, #007bff, #0056b3); /* Bright Blue to Darker Blue */
color: white;
padding: 10px 18px;
border-radius: 25px;
font-size: 0.9rem;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
transition: all 0.3s ease;
border: none; /* Ensure no default button border */
cursor: default; /* Since it's hover-based */
position: relative; /* For popup positioning */
display: inline-block;
}
.program-card-new .popular-majors-trigger:hover {
background: linear-gradient(45deg, #0056b3, #007bff);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}
.popular-majors-popup {
display: none; /* Hidden by default */
position: absolute;
bottom: calc(100% + 10px); /* Position above the trigger */
left: 50%;
transform: translateX(-50%);
background-color: #002240; /* Very Dark Blue */
color: white;
border: 1px solid #004a7c; /* Dark Blue border */
border-radius: 8px;
padding: 18px; /* User's value */
width: 340px; /* User's value */
z-index: 100; /* User's value */
box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* User's value */
font-size: 0.88rem; /* User's value */
line-height: 1.6; /* User's value */
text-align: left; /* User's value */
}
/* This rule was in user's CSS, it makes the popup appear on hover of the trigger itself */
.popular-majors-trigger:hover .popular-majors-popup {
display: block;
}
.popular-majors-popup h5 { /* User changed from h6 to h5 */
margin-top: 0;
margin-bottom: 12px; /* User's value */
font-size: 1.05rem; /* User's value */
color: #87cefa; /* Light Sky Blue for popup title */
border-bottom: 1px solid #005a9c; /* User's value */
padding-bottom: 8px; /* User's value */
}
.popular-majors-popup ul {
list-style: none; /* User's value */
padding: 0; /* User's value */
margin: 0 0 12px 0; /* User's value */
}
.popular-majors-popup ul li {
margin-bottom: 8px; /* User's value */
}
.popular-majors-popup ul li strong { /* New style from user */
color: #b0e0e6;
}
.popular-majors-popup .general-criteria-heading, /* New style from user */
.popular-majors-popup .rounds-info-heading {
font-weight: bold;
color: #add8e6;
margin-top: 12px;
margin-bottom: 6px;
font-size: 0.9em;
}
.popular-majors-popup .rounds-info-list li { /* New style from user */
font-size: 0.85em;
}
/* Program Card Footer (New from user) */
.program-card-new-footer {
padding: 18px 25px;
background-color: #f8f9fa;
text-align: center;
border-top: 1px solid #dde4e9;
}
.program-card-new-footer .program-card-link {
display: inline-block;
padding: 12px 25px;
background: linear-gradient(45deg, #28a745, #218838);
color: #ffffff;
text-decoration: none;
border-radius: 25px;
font-size: 0.95rem;
font-weight: 500;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}
.program-card-new-footer .program-card-link:hover {
background: linear-gradient(45deg, #218838, #28a745);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}
@keyframes fadeIn { /* From user */
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Other sections (Services, Projects, Locations) - From user */
.card-container {
display: grid; /* Changed to grid for better control */
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
gap: 30px;
justify-content: center; /* Center items if they don't fill the row */
}
.card {
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 90, 156, 0.12);
/* flex-basis removed as grid handles sizing */
min-width: 280px; /* Retained for minimum size */
box-sizing: border-box;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 90, 156, 0.18);
}
.card-content {
padding: 1.5rem;
flex-grow: 1;
display: flex; /* Added for better content alignment */
flex-direction: column; /* Added for better content alignment */
}
.card-content h4 {
margin-bottom: 0.75rem; /* Ensure spacing */
}
.card-content p {
flex-grow: 1; /* Ensure paragraph takes available space */
margin-bottom: 0;
}
.card img.card-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 12px 12px 0 0;
background-color: #e9ecef; /* Fallback background for image */
}
.card h4 {
font-size: 1.4rem;
color: #007bff; /* Bright Blue */
margin-top: 0;
/* margin-bottom: 0.75rem; */ /* Moved to card-content h4 */
}
.card p {
font-size: 1rem;
/* margin-bottom: 0; */ /* Moved to card-content p */
/* flex-grow: 1; */ /* Moved to card-content p */
}
.locations-grid { /* From user */
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}
.location-item { /* From user */
background-color: #ffffff;
padding: 1.8rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 90, 156, 0.12);
text-align: center;
}
.location-item h4 { /* From user */
color: #007bff; /* Bright Blue */
font-size: 1.3rem;
}
/* Footer */
footer {
background: linear-gradient(90deg, #002240 0%, #003366 100%); /* Darker gradient from user */
color: #ffffff; /* White */
text-align: center;
padding: 3rem 0; /* Increased padding from user */
margin-top: 2rem; /* User's value */
}
.footer-logos-container { /* From user */
display: flex;
justify-content: center;
align-items: center;
gap: 25px;
margin-bottom: 1.5rem;
}
.footer-logo img, .partner-logo img { /* From user */
height: 55px;
width: auto;
max-width: 220px;
transition: opacity 0.3s ease;
}
.footer-logo img:hover, .partner-logo img:hover { /* From user */
opacity: 0.85;
}
.partner-logo img { /* From user */
height: 45px;
}
footer p {
margin: 0.6rem 0; /* User's value */
font-size: 0.95rem; /* User's value */
opacity: 0.9; /* User's value */
}
footer a {
color: #87cefa; /* Light Sky Blue */
text-decoration: none;
transition: color 0.3s ease; /* User's value */
}
footer a:hover {
color: #ffffff; /* User's value */
text-decoration: underline;
}
/* QR Code Styling */
.line-qr-code {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1001;
border: 2px solid #00B900; /* Line app green color */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
background-color: white;
padding: 5px;
transition: transform 0.3s ease;
}
.line-qr-code:hover {
transform: scale(1.1);
}
.line-qr-code img {
display: block;
width: 100px; /* Adjust size as needed */
height: 100px; /* Adjust size as needed */
}
.line-qr-code p {
font-size: 0.75rem;
color: #333;
margin: 5px 0 0 0;
text-align: center;
}
/* Responsive adjustments */
@media (max-width: 992px) { /* User's breakpoint */
.card, .program-card-new {
/* flex-basis: calc(50% - 20px); Grid handles this */
}
.popular-majors-popup {
width: 300px;
}
.card-container { /* Adjust card container for 2 columns on medium screens */
grid-template-columns: repeat(auto-fit, minmax(calc(50% - 15px), 1fr));
}
}
@media (max-width: 768px) {
header .container {
flex-direction: column;
text-align: center;
}
.logo img { /* User's style */
margin: 0 auto 1rem auto;
display: block;
}
nav ul {
flex-direction: column;
align-items: center; /* User's style */
width: 100%; /* User's style */
}
nav ul li {
margin: 10px 0; /* User's style */
width: 100%; /* User's style */
text-align: center; /* User's style */
}
nav ul li a {
display: block; padding: 10px; /* User's style */
}
.hero h1 { font-size: 2.8rem; }
.hero p { font-size: 1.2rem; }
.card, .program-card-new {
/* flex-basis: 100%; Grid handles this */
}
.card-container { /* Stack cards on smaller screens */
grid-template-columns: 1fr;
}
.section-title { font-size: 2rem; }
.program-card-new-header h5 { font-size: 1.2rem; } /* User's style */
.program-card-new-header .program-card-subheader { font-size: 0.9rem; } /* User's style */
.program-card-new-body { padding: 20px; } /* User's style */
.requirements-grid { grid-template-columns: 1fr; }
.popular-majors-popup { /* User's responsive style for popup */
width: 90%;
left: 5%;
transform: translateX(0);
bottom: calc(100% + 8px);
}
.popular-majors-trigger { /* User's style */
display: block;
text-align: center;
margin-bottom: 8px;
}
.line-qr-code {
bottom: 10px;
right: 10px;
}
.line-qr-code img {
width: 80px;
height: 80px;
}
}
@media (max-width: 480px) { /* User's breakpoint */
.hero h1 { font-size: 2.2rem; }
.hero p { font-size: 1.1rem; }
.cta-button { padding: 15px 30px; font-size: 1.1rem; } /* User's value */
.section-title { font-size: 1.8rem; } /* User's value */
.program-card-new-header h5 { font-size: 1.1rem; } /* User's value */
.program-card-new-header .program-card-subheader { font-size: 0.85rem; } /* User's value */
.logo img { height: 50px; } /* User's value */
.footer-logo img, .partner-logo img { height: 40px; } /* User's value */
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="#home"><img src="https://placehold.co/220x60/FFFFFF/003366?text=LOGIN+LEARNING+Co.&font=inter" alt="LOGIN LEARNING Co. Logo" onerror="this.onerror=null; this.src='https://placehold.co/220x60/CCCCCC/969696?text=Logo+Not+Found';"></a>
</div>
<nav>
<ul>
<li><a href="#home" class="active">หน้าแรก</a></li>
<li><a href="#admission-info">ข้อมูลรับเข้าฯ</a></li>
<li><a href="#services">บริการของเรา</a></li>
<li><a href="#projects">ตัวอย่างโครงงาน</a></li>
<li><a href="#locations">สาขา</a></li>
<li><a href="#contact">ติดต่อเรา</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<h1>LOGIN LEARNING Co.</h1>
<p>คอร์สเรียนเสริมทักษะและค้นหาตัวตนของน้องมัธยม ต้น-ปลาย เพื่อตัดสินใจเข้าเรียนต่อในระดับมัธยมปลาย/มหาวิทยาลัย</p>
<a href="#services" class="cta-button">ดูบริการของเรา</a>
</div>
</section>
<main id="admission-info" class="section">
<div class="container">
<div class="faculty-category-block">
<div class="section-title-wrapper"><h2 class="section-title">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</h2></div>
<p style="text-align:center; margin-top:-1.5rem; margin-bottom: 2rem;">ข้อมูลเบื้องต้นรอบ Portfolio (โปรดตรวจสอบประกาศล่าสุดจากมหาวิทยาลัย)</p>
<div class="program-list">
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Logo_of_Chulalongkorn_University.svg/1200px-Logo_of_Chulalongkorn_University.svg.png" alt="จุฬาฯ Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/005A9C/FFFFFF?text=CU&font=bold';">
<div class="uni-program-name">
<h5>จุฬาลงกรณ์มหาวิทยาลัย</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 3.00-3.50</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TPAT3, TGAT</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">600-700</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">21,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul>
<li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.50, Portfolio ผลงานเด่น, TPAT3</li>
<li><strong>วิศวกรรมไฟฟ้า:</strong> GPAX ≥ 3.25, Portfolio, TPAT3</li>
</ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, คะแนนสอบ (TPAT3, TGAT), สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~327 คน</li>
<li>รอบ 2 Quota: ~38 คน</li>
<li>รอบ 3 Admission: ~240 คน</li>
<li>รอบ 4 Direct Admission: N/A</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ ควรตรวจสอบประกาศทางการเสมอ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.eng.chula.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ จุฬาฯ</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/th/thumb/5/51/Logo_ku_th.svg/1200px-Logo_ku_th.svg.png" alt="ม.เกษตรฯ Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/D4A017/FFFFFF?text=KU&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยเกษตรศาสตร์</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75-3.25</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TPAT3, TGAT</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">1400+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">17,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul>
<li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.25, Portfolio</li>
<li><strong>วิศวกรรมการบินและอวกาศ:</strong> GPAX ≥ 3.00, Portfolio</li>
</ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, คะแนนสอบ, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~791 คน</li>
<li>รอบ 2 Quota: ~181 คน</li>
<li>รอบ 3 Admission: ~390 คน</li>
<li>รอบ 4 Direct Admission: ~120 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.eng.ku.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ เกษตรฯ</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/th/thumb/7/76/Seal_of_King_Mongkut%27s_University_of_Technology_Thonburi.svg/1200px-Seal_of_King_Mongkut%27s_University_of_Technology_Thonburi.svg.png" alt="มจธ. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/F28500/FFFFFF?text=KMUTT&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าธนบุรี</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75-3.00</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TGAT, TPAT3 (บางโครงการ)</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">900+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">25,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.00, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, สัมภาษณ์, (อาจมีสอบเฉพาะทาง)</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~725 คน</li>
<li>รอบ 2 Quota: ~170 คน</li>
<li>รอบ 3 Admission: ~63 คน</li>
<li>รอบ 4 Direct Admission: ~10 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://eng.kmutt.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ มจธ.</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/th/thumb/e/e4/Seal_of_King_Mongkut%27s_Institute_of_Technology_Ladkrabang.svg/1200px-Seal_of_King_Mongkut%27s_Institute_of_Technology_Ladkrabang.svg.png" alt="สจล. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/E36414/FFFFFF?text=KMITL&font=bold';">
<div class="uni-program-name">
<h5>สถาบันเทคโนโลยีพระจอมเกล้าเจ้าคุณทหารลาดกระบัง</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TPAT3, TGAT</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">600+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">20,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.00, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, คะแนนสอบ, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~200 คน</li>
<li>รอบ 2 Quota: ~54 คน</li>
<li>รอบ 3 Admission: ~403 คน</li>
<li>รอบ 4 Direct Admission: ~18 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.reg.kmitl.ac.th/index/faculty_engineer.php" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ สจล.</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://www.eng.kmutnb.ac.th/wp-content/uploads/2019/08/LOGO-KMUTNB--300x300.png" alt="มจพ. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/C00000/FFFFFF?text=KMUTNB&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าพระนครเหนือ</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TGAT/TPAT (บางโครงการ)</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">600+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">18,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมการผลิต:</strong> GPAX ≥ 2.75, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~371 คน</li>
<li>รอบ 2 Quota: ~124 คน</li>
<li>รอบ 3 Admission: ~40 คน</li>
<li>รอบ 4 Direct Admission: ~154 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.eng.kmutnb.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ มจพ.</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/th/thumb/d/db/Chiang_Mai_University.svg/1200px-Chiang_Mai_University.svg.png" alt="มช. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/7B1FA2/FFFFFF?text=CMU&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยเชียงใหม่</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75-3.00</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TGAT, TPAT3</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">1100+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">20,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.00, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, คะแนนสอบ, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~352 คน</li>
<li>รอบ 2 Quota: ~225 คน</li>
<li>รอบ 3 Admission: ~350 คน</li>
<li>รอบ 4 Direct Admission: ~192 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.eng.cmu.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ มช.</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://www.kku.ac.th/wp-content/uploads/2022/01/1.-official-logo-2022-26.png" alt="มข. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/D32F2F/FFFFFF?text=KKU&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยขอนแก่น</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TGAT/TPAT (บางโครงการ)</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">600+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">18,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.00, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~326 คน</li>
<li>รอบ 2 Quota: ~152 คน</li>
<li>รอบ 3 Admission: ~118 คน</li>
<li>รอบ 4 Direct Admission: ~80 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://eng.kku.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ มข.</a>
</div>
</article>
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://huso.psu.ac.th/th/wp-content/uploads/2023/04/PSU_Logo_text_Eng_Color_2.png" alt="มอ. Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/0277BD/FFFFFF?text=PSU&font=bold';">
<div class="uni-program-name">
<h5>มหาวิทยาลัยสงขลานครินทร์</h5>
<div class="program-card-subheader">คณะวิศวกรรมศาสตร์ (หลักสูตรไทย)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>GPAX (ภาพรวม)</h6><p><span class="score">≥ 2.75</span></p></div>
<div class="requirement-block"><h6>คะแนนสอบหลัก</h6><p>TGAT/TPAT (บางโครงการ)</p></div>
<div class="requirement-block"><h6>จำนวนรับรวม (ทุกรอบ)</h6><p>~<span class="score">1000+</span> คน</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~<span class="score">22,000</span> บ./เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น (รอบ Portfolio)</h5>
<ul><li><strong>วิศวกรรมคอมพิวเตอร์:</strong> GPAX ≥ 3.00, Portfolio</li></ul>
<div class="general-criteria-heading">เกณฑ์การยื่น (ภาพรวม)</div>
<ul><li>Portfolio, สัมภาษณ์</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ~594 คน</li>
<li>รอบ 2 Quota: ~210 คน</li>
<li>รอบ 3 Admission: ~100 คน</li>
<li>รอบ 4 Direct Admission: ~150 คน</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ</em></p>
</div>
</div>
</div>
</div>
<div class="program-card-new-footer">
<a href="https://www.eng.psu.ac.th/" target="_blank" rel="noopener noreferrer" class="program-card-link">เว็บไซต์คณะวิศวกรรมศาสตร์ มอ.</a>
</div>
</article>
</div> <h4 style="margin-top: 2rem; text-align:center; font-size:1.2rem; color: #004a7c;">ข้อกำหนดทั่วไปรอบ Portfolio (หลักสูตรไทย)</h4>
<p style="text-align:center; max-width: 700px; margin-left:auto; margin-right:auto; font-size:0.9rem;">GPAX, เกรดกลุ่มสาระ, Portfolio ผลงาน, TGAT, TPAT3, คะแนนภาษาอังกฤษ (อาจแตกต่างกันในแต่ละมหาวิทยาลัย)</p>
</div> <div class="faculty-category-block">
<div class="section-title-wrapper"><h2 class="section-title">คณะวิศวกรรมศาสตร์ (หลักสูตรนานาชาติ)</h2></div>
<p style="text-align:center; margin-top:-1.5rem; margin-bottom: 2rem;">ข้อมูลเบื้องต้นรอบ Portfolio (โปรดตรวจสอบประกาศล่าสุดจากมหาวิทยาลัย)</p>
<div class="program-list">
<article class="program-card-new">
<div class="program-card-new-header">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Logo_of_Chulalongkorn_University.svg/1200px-Logo_of_Chulalongkorn_University.svg.png" alt="จุฬาฯ Logo" class="program-card-logo" onerror="this.onerror=null; this.src='https://placehold.co/60x60/005A9C/FFFFFF?text=CU&font=bold';">
<div class="uni-program-name">
<h5>จุฬาลงกรณ์มหาวิทยาลัย</h5>
<div class="program-card-subheader">ISE (International School of Engineering)</div>
</div>
</div>
<div class="program-card-new-body">
<div class="requirements-grid">
<div class="requirement-block"><h6>High School Equivalence</h6><p>GED: <span class="score">145+</span> (each subject)</p><p>IB/A-Level: ตามเกณฑ์</p></div>
<div class="requirement-block"><h6>English Test</h6><p>IELTS: <span class="score">≥ 6.0</span></p><p>TOEFL iBT: <span class="score">≥ 80</span></p><p>CU-TEP: <span class="score">≥ 80</span></p></div>
<div class="requirement-block"><h6>Math Test</h6><p>SAT Math: <span class="score">≥ 620</span></p><p>CU-AAT Math: <span class="score">≥ 480</span></p></div>
<div class="requirement-block"><h6>Science Test</h6><p>SAT II (Phys & Chem): <span class="score">≥ 600</span> each</p><p>CU-ATS: <span class="score">≥ 800</span></p><p>ACT Sci: <span class="score">≥ 25</span></p></div>
<div class="requirement-block"><h6>จำนวนรับ (รอบพอร์ต)</h6><p>~ <span class="score">180-200</span> คน (รวมทุกสาขา)</p></div>
<div class="requirement-block"><h6>ค่าเทอม (โดยประมาณ)</h6><p>~ <span class="score">84,000</span> บาท/เทอม</p></div>
</div>
<div class="popular-majors-info">
<div class="popular-majors-trigger">ข้อมูลสาขายอดฮิต
<div class="popular-majors-popup">
<h5>ตัวอย่างสาขายอดฮิตและเกณฑ์เบื้องต้น</h5>
<ul>
<li><strong>Aerospace Engineering:</strong> GPAX ≥ 3.5, Strong Math/Physics, IELTS ≥ 6.5, SAT Math ≥ 650</li>
<li><strong>Robotics and AI:</strong> GPAX ≥ 3.5, Strong Math/Programming, IELTS ≥ 6.5, SAT Math ≥ 650</li>
</ul>
<div class="general-criteria-heading">สิ่งที่ต้องเตรียม (ภาพรวม)</div>
<ul><li>Portfolio (ผลงาน, กิจกรรม), Statement of Purpose, Recommendation Letters, สัมภาษณ์ (ภาษาอังกฤษ)</li></ul>
<div class="rounds-info-heading">จำนวนรับในแต่ละรอบ (โดยประมาณ - ภาพรวม ISE)</div>
<ul class="rounds-info-list">
<li>รอบ 1 Portfolio: ส่วนใหญ่</li>
<li>รอบอื่นๆ: น้อยมาก หรือไม่มี (ตรวจสอบประกาศ)</li>
</ul>
<p style="font-size:0.75em; opacity:0.8; margin-top:10px;"><em>*เป็นข้อมูลโดยประมาณ ควรตรวจสอบประกาศทางการเสมอ</em></p>
</div>