📖 Reference – วิทยากรและผลงาน
ทีมวิทยากรผู้เชี่ยวชาญของ Training Team Thai พร้อมให้บริการฝึกอบรมในหลากหลายหัวข้อ
ทีมวิทยากร
อาจารย์ วินัย ดวงใจ
วิทยากรด้านความปลอดภัยและระบบคุณภาพ
วิดีโอแนะนำ
ผลงานและลูกค้าอ้างอิง







.instructor-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 20px 0;
}
.instructor-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border: 1px solid #dee2e6;
border-radius: 12px;
padding: 25px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instructor-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.instructor-card h3 {
color: #0073aa;
margin: 0 0 10px 0;
font-size: 1.2em;
}
.instructor-card p {
margin: 5px 0;
color: #555;
line-height: 1.6;
}
.instructor-card a {
color: #0073aa;
text-decoration: none;
font-weight: 500;
}
.instructor-card a:hover {
text-decoration: underline;
}