/* Reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
position: relative;
overflow-x: hidden;
}
body::before {
content: “”;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(‘data:image/svg+xml;utf8,’);
z-index: -1;
opacity: 0.3;
}
.post-body table td, th {border: none; padding: 15px; text-align: left; }
.post-body table th {border: none; padding: 15px; text-align: center; }
.post-body table {border: none;}
/* Header Styles */
/* Navigation */
.gsg-nav {
background-color: white;
padding: 1rem 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.gsg-nav__list {
display: flex;
justify-content: center;
list-style: none;
flex-wrap: wrap;
gap: 1.5rem;
}
.gsg-nav__item {
position: relative;
}
.gsg-nav__link {
color: #0056b3;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
padding: 0.5rem 0.8rem;
border-radius: 50px;
transition: all 0.3s ease;
}
.gsg-nav__link:hover {
background-color: #e6f0ff;
color: #003d82;
}
/* Container */
.gsg-container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1.5rem;
}
/* Section Styles */
.gsg-section {
background-color: white;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
padding: 2.5rem;
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
}
.gsg-section::before {
content: “”;
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: linear-gradient(to bottom, #0056b3, #00a8ff);
border-radius: 0 5px 5px 0;
}
.gsg-section__title {
color: #0056b3;
font-size: 1.8rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.8rem;
}
.gsg-section__title::after {
content: “”;
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 4px;
background: linear-gradient(to right, #00a8ff, #0056b3);
border-radius: 2px;
}
/* Introduction */
.gsg-intro {
background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
color: white;
border-radius: 12px;
padding: 2.5rem;
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
}
.gsg-intro__title {
font-size: 2rem;
margin-bottom: 1.2rem;
position: relative;
z-index: 2;
}
.gsg-intro__content {
font-size: 1.1rem;
line-height: 1.7;
position: relative;
z-index: 2;
max-width: 900px;
}
.gsg-intro::before {
content: “”;
position: absolute;
top: -50px;
right: -50px;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
}
.gsg-intro::after {
content: “”;
position: absolute;
bottom: -80px;
left: -80px;
width: 250px;
height: 250px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
}
/* Card Styles */
.gsg-card {
background-color: #f8faff;
border-radius: 10px;
padding: 1.8rem;
margin-bottom: 1.8rem;
border-left: 4px solid #0056b3;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gsg-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
}
.gsg-card__title {
color: #0056b3;
font-size: 1.3rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.8rem;
}
.gsg-card__icon {
background-color: #e6f0ff;
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #0056b3;
}
.gsg-card__content {
margin-bottom: 1.5rem;
}
.gsg-card__example {
background-color: white;
border-left: 3px solid #00a8ff;
padding: 1.2rem;
border-radius: 0 8px 8px 0;
margin-top: 1rem;
position: relative;
}
.gsg-card__example::before {
content: “Contoh”;
position: absolute;
top: 0;
left: 0;
background-color: #00a8ff;
color: white;
font-size: 0.8rem;
padding: 0.2rem 0.8rem;
border-radius: 0 0 5px 0;
}
/* Table Styles */
.gsg-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.gsg-table th {
background-color: #0056b3;
color: white;
padding: 1rem;
text-align: left;
font-weight: 600;
}
.gsg-table td {
padding: 1rem;
border-bottom: 1px solid #eaeaea;
}
.gsg-table tr:nth-child(even) {
background-color: #f8faff;
}
.gsg-table tr:last-child td {
border-bottom: none;
}
.gsg-table__check {
color: #28a745;
font-weight: bold;
}
.gsg-table__cross {
color: #dc3545;
font-weight: bold;
}
/* Flowchart Styles */
.gsg-flowchart {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin: 2.5rem 0;
position: relative;
}
.gsg-flowchart::before {
content: “”;
position: absolute;
top: 50px;
left: 0;
right: 0;
height: 0px;
background: linear-gradient(to right, #0056b3, #00a8ff);
z-index: 1;
}
.gsg-flowchart__step {
background: linear-gradient(135deg, #0056b3 0%, #00a8ff 100%);
color: white;
padding: 1.5rem;
border-radius: 10px;
width: 180px;
text-align: center;
position: relative;
z-index: 2;
box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
transition: transform 0.3s ease;
}
.gsg-flowchart__step:hover {
transform: scale(1.05);
}
.gsg-flowchart__step-number {
background-color: white;
color: #0056b3;
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-weight: bold;
}
.gsg-flowchart__arrow {
position: absolute;
top: 50%;
right: -20px;
transform: translateY(-50%);
color: #0056b3;
font-size: 1.5rem;
}
/* FAQ Styles */
.gsg-faq__item {
border-bottom: 1px solid #eaeaea;
margin-bottom: 1rem;
}
.gsg-faq__question {
padding: 1.2rem 0;
cursor: pointer;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
color: #0056b3;
background-color:white;
}
.gsg-faq__icon {
transition: transform 0.3s ease;
}
.gsg-faq__answer {
padding: 0 0 1.5rem 0;
display: none;
color: #555;
}
.gsg-faq__item.active .gsg-faq__answer {
display: block;
background-color:white;
}
.gsg-faq__item.active .gsg-faq__icon {
transform: rotate(180deg);
}
/* Call to Action */
.gsg-cta {
background: linear-gradient(135deg, #0056b3 0%, #00a8ff 100%);
color: white;
border-radius: 12px;
padding: 3rem 2rem;
text-align: center;
margin: 3rem 0;
position: relative;
overflow: hidden;
}
.gsg-cta__title {
font-size: 2rem;
margin-bottom: 1.5rem;
position: relative;
z-index: 2;
}
.gsg-cta__text {
max-width: 700px;
margin: 0 auto 2rem;
font-size: 1.1rem;
position: relative;
z-index: 2;
}
.gsg-cta__button {
background-color: white;
color: #0056b3;
border: none;
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
z-index: 2;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.gsg-cta__button:hover {
background-color: #f0f7ff;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.gsg-cta::before {
content: “”;
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
}
.gsg-cta::after {
content: “”;
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
}
/* Footer */
.gsg-footer {
background-color: white;
color: white;
padding: 3rem 0 2rem;
text-align: center;
}
/* Responsive Design */
@media (max-width: 992px) {
.gsg-container {
padding: 1.5rem;
}
.gsg-section {
padding: 2rem 1.5rem;
}
.gsg-flowchart {
gap: 1rem;
}
.gsg-flowchart__step {
width: 160px;
padding: 1.2rem;
}
}
@media (max-width: 768px) {
.gsg-header__title {
font-size: 1.8rem;
}
.gsg-nav__list {
gap: 0.8rem;
}
.gsg-nav__link {
font-size: 0.9rem;
padding: 0.4rem 0.7rem;
}
.gsg-section__title {
font-size: 1.6rem;
}
.gsg-flowchart {
flex-direction: column;
align-items: center;
}
.gsg-flowchart::before {
display: none;
}
.gsg-flowchart__step {
width: 100%;
max-width: 300px;
}
.gsg-flowchart__arrow {
display: none;
}
.gsg-table {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.gsg-header__title {
font-size: 1.5rem;
}
.gsg-header__subtitle {
font-size: 0.95rem;
}
.gsg-intro__title {
font-size: 1.6rem;
}
.gsg-section {
padding: 1.5rem 1rem;
}
.gsg-card {
padding: 1.5rem 1.2rem;
}
.gsg-table th, .gsg-table td {
padding: 0.8rem;
}
}
.column-article-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 10px;
}
.column-article {
width: 50%;
padding: 10px;
}
.column-article img {
width: 100%;
border-radius: 10px;
}
@media screen and (max-width: 500px) {
.column-article-container {
flex-direction: column;
}
.column-article {
width: 100%;
}
}
.rp-container {
max-width: 1400px; /* Diperlebar untuk layar besar */
margin: 0 auto;
padding: 20px;
}
.rp-header {
text-align: center;
margin-bottom: 40px;
}
.rp-main-title {
font-size: 2.5rem;
font-weight: 600;
color: black;
margin-bottom: 10px;
position: relative;
display: inline-block;
}
.rp-subtitle {
color: black;
font-size: 1.1rem;
max-width: 600px;
margin: 20px auto 0;
line-height: 1.6;
}
.rp-cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Responsif penuh */
gap: 30px;
}
.rp-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
overflow: hidden;
transition: var(–rp-transition);
transform: translateY(0);
position: relative;
height: 100%; /* Tinggi penuh */
}
.rp-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}
.rp-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(–rp-primary), var(–rp-accent));
opacity: 0;
transition: var(–rp-transition);
}
.rp-card:hover::before {
opacity: 1;
}
.rp-card-img-container {
overflow: hidden;
position: relative;
height: 220px; /* Lebih tinggi */
}
.rp-card-img {
width: 100%;
height: 180%;
object-fit: cover;
transition: var(–rp-transition);
}
.rp-card:hover .rp-card-img {
transform: scale(1.05);
}
.rp-card-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.rp-card-title {
font-size: 1rem; /* Sedikit lebih besar */
font-weight: 600;
margin: 0 0 15px;
color: black;
line-height: 1.4;
transition: var(–rp-transition);
}
.rp-read-more {
margin-top: auto;
text-align: center;
color: white;
background-color: #007bff;
border-radius:50px;
}
.rp-read-more-link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: white;
font-weight: 500;
transition: var(–rp-transition);
padding: 8px 0;
font-size: 1.1rem;
}
.rp-read-more-link:hover {
color: var(–rp-secondary);
}
/* Layar sangat lebar (Desktop besar) */
@media (min-width: 1600px) {
.rp-cards-container {
grid-template-columns: repeat(3, 1fr); /* Tiga kolom dengan lebar sama */
}
.rp-card-img-container {
height: 250px; /* Lebih tinggi di layar lebar */
}
.rp-card-content {
padding: 30px;
}
.rp-card-title {
font-size: 1.5rem;
}
}
/* Tablet dan Desktop kecil */
@media (max-width: 1199px) {
.rp-cards-container {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.rp-card-img-container {
height: 200px;
}
}
/* Mobile */
@media (max-width: 768px) {
.rp-main-title {
font-size: 2rem;
}
.rp-cards-container {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
}
.rp-loader {
display: flex;
justify-content: center;
padding: 40px 0;
grid-column: 1 / -1; /* Loader memenuhi seluruh lebar */
}
.rp-loader-dot {
width: 12px;
height: 12px;
background: var(–rp-primary);
border-radius: 50%;
margin: 0 5px;
animation: rp-loader 1.2s infinite ease-in-out both;
}
.rp-loader-dot:nth-child(1) { animation-delay: -0.32s; }
.rp-loader-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes rp-loader {
0%, 80%, 100% { transform: scale(0); }
40% { transform: scale(1); }
}
.rp-no-posts {
text-align: center;
color: var(–rp-gray);
padding: 40px 0;
font-size: 1.2rem;
grid-column: 1 / -1; /* Memenuhi seluruh lebar */
}
Apa Itu GS Statement dan Mengapa Krusial untuk Visa Australia?
Genuine Student (GS) Statement adalah elemen esensial dalam aplikasi visa pelajar Australia. Dokumen ini bukan sekadar formalitasβmelainkan representasi dari niat tulus, perencanaan matang, dan bukti keterikatan Anda dengan Indonesia. Petugas imigrasi menggunakan GS Statement untuk menilai apakah Anda benar-benar datang ke Australia untuk belajar, bukan untuk mencari celah tinggal permanen secara ilegal.
π Struktur GS Statement yang Profesional dan Meyakinkan
1
Riwayat Akademik dan Profesional: Membangun Fondasi Kredibel
Di bagian awal, kita perlu menunjukkan kesinambungan antara pendidikan terdahulu, pengalaman kerja, dan studi yang akan dijalani di Australia. Penyampaian naratif harus personal, ringkas, namun padat makna.
Elemen yang wajib dicantumkan:
- Riwayat pendidikan lengkap (SMA hingga jenjang terakhir)
- Pengalaman kerja/magang yang relevan
- Keterkaitan bidang studi di Australia dengan latar belakang
“Saya menyelesaikan studi Sarjana Teknik Industri di ITS Surabaya pada 2021. Setelah lulus, saya bekerja sebagai analis rantai pasok di perusahaan manufaktur FMCG nasional. Ketertarikan saya terhadap efisiensi logistik dan teknologi membuat saya ingin memperdalam studi melalui program Master of Supply Chain Innovation di Swinburne University.”
2
Alasan Memilih Australia: Spesifik, Terukur, dan Terbukti
Petugas tidak akan menerima jawaban umum seperti “Australia negara maju dan aman.” Anda perlu menyampaikan argumen kuat dan riset nyata.
Poin yang harus ditonjolkan:
- Keunggulan sistem pendidikan Australia
- Reputasi kampus (QS Ranking, akreditasi global)
- Program/jurusan yang unik dan tidak tersedia di Indonesia
- Perbandingan konkret dengan kampus lain
“Saya memilih Australia karena pendekatan pendidikannya berbasis praktik industri dan kolaborasi global. Program Master of Data Science di University of Melbourne, yang masuk peringkat 50 besar dunia versi QS Ranking 2024, memiliki kurikulum berbasis kecerdasan buatan dan pembelajaran mesin. Saya juga membandingkan dengan NTU di Singapura dan Universitas Indonesia, namun hanya Melbourne yang menawarkan laboratorium AI dengan kemitraan industri langsung bersama IBM Research dan Telstra.”
3
Kesesuaian Jurusan dan Tujuan Karier: Sinkronisasi Tanpa Celah
Selanjutnya, tunjukkan bahwa pilihan studi Anda bukan hasil impulsif, tapi bagian dari rencana jangka panjang.
Poin krusial:
- Hubungan jurusan dengan latar belakang Anda
- Kebutuhan industri terhadap keahlian tersebut
- Fitur unggulan kampus (dosen, fasilitas, kerja sama industri)
“Saya memilih Master of Cyber Security di Deakin University karena kebutuhan dunia kerja Indonesia yang semakin tinggi terhadap ahli keamanan siber. Latar belakang saya sebagai lulusan Informatika dari UGM dan pengalaman bekerja di tim keamanan IT membuat saya yakin bahwa pendidikan ini akan memperkuat posisi saya untuk membangun startup keamanan digital di Indonesia. Program ini juga mendapat akreditasi dari Australian Computer Society dan memiliki lab riset forensik digital mutakhir.”
4
Rencana Pasca-Studi: Terstruktur dan Legal
Bagian ini harus menunjukkan bahwa Anda sudah merancang masa depan secara realistis, sesuai aturan imigrasi, dan tanpa niat tersembunyi untuk tinggal permanen secara ilegal.
Hal yang perlu disampaikan:
- Rencana setelah lulus (kembali ke Indonesia atau Subclass 485)
- Konsistensi antara rencana karier dan jurusan
- Tujuan jangka panjang dan kontribusi ke tanah air
“Setelah menyelesaikan studi, saya akan mengajukan visa Subclass 485 untuk mendapatkan pengalaman kerja profesional di Australia selama maksimal dua tahun. Setelah itu, saya akan kembali ke Surabaya untuk bergabung dengan startup logistik berbasis AI yang sedang kami rintis bersama mitra lokal. Visi jangka panjang saya adalah menjadi pionir transformasi digital dalam industri logistik Indonesia.”
5
Bukti Keterikatan dengan Indonesia: Tunjukkan Akar Anda
Petugas imigrasi ingin memastikan Anda memiliki alasan kuat untuk kembali. Jangan hanya menyebut “akan pulang,” tapi berikan bukti.
Yang wajib disertakan:
- Sumber dana yang sah (orang tua, sponsor, beasiswa)
- Aset dan tanggung jawab di Indonesia
- Keluarga inti atau pasangan yang menetap di Indonesia
- Kegiatan komunitas atau organisasi
“Studi saya akan didanai penuh oleh beasiswa LPDP. Selain itu, saya adalah anak bungsu dari keluarga pengusaha percetakan di Bandung. Saya memiliki tanggung jawab meneruskan bisnis keluarga tersebut, yang sudah berdiri sejak 1998 dan memiliki 12 karyawan tetap. Saya juga aktif dalam organisasi pengusaha muda HIPMI wilayah Jawa Barat.”
π« Kesalahan Fatal yang Harus Dihindari
Jangan sampai niat baik Anda gagal hanya karena kesalahan kecil yang mematikan kredibilitas.
| Kesalahan Umum | Dampak |
|---|---|
| Menyalin GS Statement dari internet/AI tanpa modifikasi | Langsung ditolak karena dianggap tidak autentik |
| Menyebut “ingin tinggal di Australia selamanya” | Menunjukkan niat tinggal ilegal |
| Memilih jurusan yang tidak sesuai latar belakang | Dipertanyakan niat belajarnya |
| Tidak mencantumkan bukti keterikatan dengan Indonesia | Dianggap berisiko overstaying |
| Bahasa tidak formal, tidak rapi | Menurunkan kesan profesionalisme |
β Checklist GS Statement Anda
| Poin Evaluasi | Status |
|---|---|
| Latar belakang pendidikan dan kerja jelas | β Sudah |
| Alasan memilih Australia spesifik dan logis | β Sudah |
| Jurusan dan kampus sesuai tujuan karier | β Sudah |
| Rencana pasca-lulus realistis dan legal | β Sudah |
| Bukti keterikatan dengan Indonesia lengkap | β Sudah |
| Bahasa formal, naratif personal, dan logis | β Sudah |
| Bebas dari hasil salinan AI/internet | β Sudah |
π Rekomendasi Diagram: Alur Logis GS Statement
β Tanya Jawab Seputar GS Statement
β¨ GS Statement Bukan Sekadar Tulisan, tapi Bukti Tulus Anda
GS Statement yang unggul tidak hanya menyampaikan informasi, tetapi meyakinkan. Ia harus memotret diri Anda sebagai pelajar yang punya rencana jelas, niat kuat untuk belajar, dan tanggung jawab untuk kembali dan berkontribusi di tanah air. Buat narasi Anda personal, jujur, dan relevan dengan dokumen pendukung lainnya.
// FAQ Accordion
document.querySelectorAll(‘.gsg-faq__question’).forEach(question => {
question.addEventListener(‘click’, () => {
const item = question.parentElement;
item.classList.toggle(‘active’);
});
});
// Smooth scrolling for navigation
document.querySelectorAll(‘.gsg-nav__link’).forEach(link => {
link.addEventListener(‘click’, function(e) {
e.preventDefault();
const targetId = this.getAttribute(‘href’);
const targetElement = document.querySelector(targetId);
window.scrollTo({
top: targetElement.offsetTop – 100,
behavior: ‘smooth’
});
});
});
// Animation for cards when they come into view
const cards = document.querySelectorAll(‘.gsg-card’);
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animation = ‘fadeInUp 0.8s ease forwards’;
observer.unobserve(entry.target);
}
});
}, {
threshold: 0.1
});
cards.forEach(card => {
card.style.opacity = ‘0’;
card.style.transform = ‘translateY(20px)’;
observer.observe(card);
});
// Add CSS animation
const style = document.createElement(‘style’);
style.innerHTML = `
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
`;
document.head.appendChild(style);
function handleBlogPosts(json) {
const entries = json.feed.entry || [];
const container = document.getElementById(‘recent-posts’);
// Filter artikel hanya dengan tag “Bedah jurusan”
const filteredEntries = entries.filter(entry => {
if (!entry.category) return false;
return entry.category.some(cat =>
cat.term.toLowerCase() === “visa”
);
});
if (filteredEntries.length === 0) {
container.innerHTML = ‘
Tidak ada postingan ditemukan untuk tag “Bedah jurusan”.
‘;
return;
}
container.innerHTML = ”;
filteredEntries.slice(0, 3).forEach(entry => {
const title = entry.title.$t;
const link = entry.link.find(l => l.rel === ‘alternate’).href;
const content = entry.content.$t;
const parser = new DOMParser();
const doc = parser.parseFromString(content, ‘text/html’);
const img = doc.querySelector(‘img’);
const imgSrc = img ? img.src : ‘https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=400&q=80’;
const card = document.createElement(‘div’);
card.className = ‘rp-card’;
card.innerHTML = `
${title}
`;
container.appendChild(card);
});
}
(function() {
const script = document.createElement(‘script’);
script.src = ‘https://blog.starshipeducation.com/feeds/posts/default?alt=json-in-script&callback=handleBlogPosts’;
document.body.appendChild(script);
})();
Australia
Inggris
USA
Canada
Singapore
Malaysia