Spaces:
Running
Running
File size: 20,645 Bytes
a877f33 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vietnam Economic Growth Report 2025</title>
<style>
:root {
--primary: #2c3e50;
--secondary: #3498db;
--accent: #e67e22;
--bg: #f8f9fa;
--white: #ffffff;
--spacing: 1.5rem;
--font-sans: 'Segoe UI', sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: var(--font-sans);
background: var(--bg);
color: var(--primary);
line-height: 1.6;
}
header {
background: var(--secondary);
color: white;
padding: var(--spacing);
text-align: center;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: var(--spacing);
}
main {
display: grid;
grid-template-columns: 250px 1fr;
gap: var(--spacing);
}
.toc {
position: sticky;
top: 60px;
background: white;
padding: var(--spacing);
border-right: 1px solid #ddd;
}
.toc h2 {
font-size: 1.2rem;
margin-bottom: 1rem;
border-bottom: 2px solid var(--secondary);
padding-bottom: 0.5rem;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc li {
margin: 0.5rem 0;
}
.toc a {
color: var(--primary);
text-decoration: none;
font-size: 0.95rem;
}
.toc a:hover {
text-decoration: underline;
}
.content {
background: white;
padding: var(--spacing);
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
h1, h2, h3 {
color: var(--primary);
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
}
h2 {
font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2rem);
}
h3 {
font-size: 1.2rem;
border-bottom: 1px solid #eee;
padding-bottom: 0.3rem;
}
.chart {
margin: 1.5rem 0;
}
.bar {
height: 20px;
background: var(--accent);
margin: 5px 0;
border-radius: 4px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0;
}
th, td {
padding: 0.75rem;
border: 1px solid #ddd;
text-align: left;
}
th {
background: #f0f0f0;
font-weight: bold;
}
.search-bar {
margin: 1rem 0;
}
.search-bar input {
width: 100%;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
}
.collapsible {
cursor: pointer;
background: #f0f0f0;
padding: 0.5rem;
margin: 1rem 0;
border-radius: 4px;
}
.collapsible-content {
display: none;
padding: 1rem;
background: #fafafa;
border-left: 3px solid var(--secondary);
}
@media (max-width: 768px) {
main {
grid-template-columns: 1fr;
}
.toc {
position: static;
border-right: none;
margin-bottom: 1rem;
}
}
footer {
background: var(--secondary);
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
.citation {
font-size: 0.9rem;
}
.citation a {
color: #d3d3d3;
}
</style>
</head>
<body>
<header>
<h1>Vietnam Economic Growth Report 2025</h1>
</header>
<div class="container">
<main>
<nav class="toc">
<h2>Table of Contents</h2>
<ul>
<li><a href="#executive">Executive Summary</a></li>
<li><a href="#indicators">Key Economic Indicators</a></li>
<li><a href="#sectors">Sectoral Analysis</a></li>
<li><a href="#challenges">Challenges</a></li>
<li><a href="#history">Historical Comparison</a></li>
<li><a href="#outlook">Economic Outlook</a></li>
<li><a href="#conclusion">Conclusion</a></li>
<li><a href="#sources">Sources</a></li>
</ul>
</nav>
<div class="content">
<section id="executive">
<h2>Executive Summary</h2>
<p>Vietnam's economy continues to demonstrate robust growth momentum in 2025, with GDP expanding 7.96 percent in Q2 2025 over the same quarter of the previous year. The first half of 2025 recorded growth of 7.52%, the highest mid-year growth rate since 2011.</p>
</section>
<section id="indicators">
<h2>Key Economic Indicators 2025</h2>
<div class="collapsible" onclick="toggleContent('gdp-chart')">GDP Growth Performance</div>
<div id="gdp-chart" class="collapsible-content">
<p><strong>Actual Results:</strong></p>
<ul>
<li>Q1 2025: 6.9% YoY</li>
<li>Q2 2025: 7.96% YoY</li>
<li>First Half 2025: 7.52%</li>
</ul>
<p><strong>2025 GDP Growth Forecasts:</strong></p>
<ul>
<li>World Bank: 5.8%</li>
<li>ADB: 6.6%</li>
<li>IMF: 5.2%</li>
<li>Government Target: 8.3–8.5%</li>
</ul>
<div class="chart">
<h3>GDP Growth Visualization</h3>
<div style="width: 100%; max-width: 600px; margin: 0 auto;">
<svg viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="150" width="100" height="20" fill="#3498db"/>
<rect x="120" y="130" width="100" height="40" fill="#2ecc71"/>
<rect x="240" y="110" width="100" height="60" fill="#e67e22"/>
<rect x="360" y="90" width="100" height="80" fill="#f1c40f"/>
<rect x="480" y="70" width="100" height="100" fill="#9b59b6"/>
</svg>
<div style="display: flex; justify-content: space-between; margin-top: 10px;">
<div>World Bank: 5.8%</div>
<div>ADB: 6.6%</div>
<div>IMF: 5.2%</div>
<div>Government: 8.5%</div>
<div>Actual: 7.52%</div>
</div>
</div>
</div>
</div>
<div class="collapsible" onclick="toggleContent('inflation-chart')">Inflation Rate</div>
<div id="inflation-chart" class="collapsible-content">
<p><strong>2025 Inflation Trends:</strong></p>
<ul>
<li>May 2025: 3.24%</li>
<li>June 2025: 3.57%</li>
<li>IMF Forecast: 2.9%</li>
<li>ADB Forecast: 4.0%</li>
</ul>
<div class="chart">
<h3>Inflation Rate Visualization</h3>
<div style="width: 100%; max-width: 600px; margin: 0 auto;">
<svg viewBox="0 0 600 100" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="70" width="100" height="30" fill="#3498db"/>
<rect x="120" y="60" width="100" height="40" fill="#2ecc71"/>
<rect x="240" y="50" width="100" height="50" fill="#e67e22"/>
<rect x="360" y="40" width="100" height="60" fill="#f1c40f"/>
</svg>
<div style="display: flex; justify-content: space-between; margin-top: 10px;">
<div>May 2025: 3.24%</div>
<div>June 2025: 3.57%</div>
<div>IMF: 2.9%</div>
<div>ADB: 4.0%</div>
</div>
</div>
</div>
</div>
<div class="collapsible" onclick="toggleContent('unemployment-chart')">Unemployment Rate</div>
<div id="unemployment-chart" class="collapsible-content">
<p><strong>Q1 2025: 2.20%</strong> (down from 2.22% in Q4 2024)</p>
<div class="chart">
<h3>Unemployment Trend</h3>
<div style="width: 100%; max-width: 600px; margin: 0 auto;">
<svg viewBox="0 0 600 100" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="80" width="100" height="20" fill="#3498db"/>
<rect x="120" y="85" width="100" height="15" fill="#2ecc71"/>
</svg>
<div style="display: flex; justify-content: space-between; margin-top: 10px;">
<div>Q4 2024: 2.22%</div>
<div>Q1 2025: 2.20%</div>
</div>
</div>
</div>
</div>
<div class="collapsible" onclick="toggleContent('fdi-chart')">Foreign Direct Investment</div>
<div id="fdi-chart" class="collapsible-content">
<p><strong>First 5 months 2025:</strong></p>
<ul>
<li>Registered Capital: $18.4 billion (↑51% YoY)</li>
<li>Disbursed Capital: $8.9 billion</li>
</ul>
<p><strong>First Half 2025:</strong></p>
<ul>
<li>Total FDI: US$21.51 billion (↑32.6% YoY)</li>
</ul>
<div class="chart">
<h3>FDI Growth Visualization</h3>
<div style="width: 100%; max-width: 600px; margin: 0 auto;">
<svg viewBox="0 0 600 100" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="80" width="100" height="20" fill="#3498db"/>
<rect x="120" y="60" width="100" height="40" fill="#2ecc71"/>
<rect x="240" y="40" width="100" height="60" fill="#e67e22"/>
</svg>
<div style="display: flex; justify-content: space-between; margin-top: 10px;">
<div>Q1 2024: $12.2B</div>
<div>Q1 2025: $18.4B</div>
<div>H1 2025: $21.51B</div>
</div>
</div>
</div>
</div>
</section>
<section id="sectors">
<h2>Sectoral Analysis</h2>
<h3>Primary Growth Drivers</h3>
<ul>
<li>Services Sector: Major contributor to GDP growth</li>
<li>Manufacturing Sector: Maintains recovery trajectory</li>
<li>Export Industries: Continue as economic backbone</li>
<li>Banking Sector: Projected 17% earnings increase in 2025</li>
</ul>
<h3>Retail Performance</h3>
<p>First quarter 2025 retail sales reached 1.708 quadrillion VND ($66.83 billion), reflecting 9.9% YoY growth.</p>
</section>
<section id="challenges">
<h2>Challenges and Risk Factors</h2>
<ul>
<li>Global trade tensions impact export activities</li>
<li>US tariff policies pressure export-oriented businesses</li>
<li>Geopolitical instability increases business uncertainty</li>
<li>FDI overdependence warns of inflation risks</li>
<li>Macroeconomic stability concerns with public debt and inflation</li>
</ul>
</section>
<section id="history">
<h2>Historical Comparison</h2>
<p>2024 GDP growth: 7.1%</p>
<p>2025 forecast: Growth may moderate due to external factors</p>
<p>Long-term outlook: Resilient fundamentals despite short-term headwinds</p>
<div class="chart">
<h3>Year-on-Year GDP Growth (2020-2025)</h3>
<div style="width: 100%; max-width: 600px; margin: 0 auto;">
<svg viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="180" width="100" height="20" fill="#3498db"/>
<rect x="120" y="160" width="100" height="40" fill="#2ecc71"/>
<rect x="240" y="140" width="100" height="60" fill="#e67e22"/>
<rect x="360" y="120" width="100" height="80" fill="#f1c40f"/>
<rect x="480" y="100" width="100" height="100" fill="#9b59b6"/>
<rect x="600" y="80" width="100" height="120" fill="#1abc9c"/>
</svg>
<div style="display: flex; justify-content: space-between; margin-top: 10px;">
<div>2020: 3.21%</div>
<div>2021: 4.85%</div>
<div>2022: 5.42%</div>
<div>2023: 3.46%</div>
<div>2024: 5.98%</div>
<div>2025: 6.93%</div>
</div>
</div>
</div>
</section>
<section id="outlook">
<h2>Economic Outlook and Projections</h2>
<p>Vietnam's economy started 2025 strongly with 6.9% YoY growth in Q1. The government's target of 8.3-8.5% appears ambitious but strong domestic fundamentals provide support.</p>
<h3>Key Supporting Factors</h3>
<ul>
<li>Robust FDI inflows indicating investor confidence</li>
<li>Low unemployment supporting domestic consumption</li>
<li>Controlled inflation maintaining purchasing power</li>
<li>Export competitiveness despite trade challenges</li>
<li>Parliamentary support raising GDP target to 8%</li>
</ul>
</section>
<section id="conclusion">
<h2>Conclusion</h2>
<p>Vietnam's economic performance in 2025 demonstrates resilience and growth potential. Strong fundamentals including low unemployment, controlled inflation, and robust FDI inflows position the economy well for sustained development.</p>
</section>
<section id="sources">
<h2>Sources and Citations</h2>
<ul>
<li class="citation">Trading Economics - Vietnam GDP Annual Growth Rate <a href="https://tradingeconomics.com/vietnam/gdp-growth-annual" target="_blank">Link</a></li>
<li class="citation">International Monetary Fund - Vietnam Country Profile <a href="https://www.imf.org/en/Countries/VNM" target="_blank">Link</a></li>
<li class="citation">World Economics - Vietnam GDP Estimates <a href="https://www.worldeconomics.com/GDP/Vietnam.gdp" target="_blank">Link</a></li>
<li class="citation">Government of Vietnam - General Statistics Office <a href="https://www.gso.gov.vn/en/" target="_blank">Link</a></li>
<li class="citation">Wikipedia - Economy of Vietnam <a href="https://en.wikipedia.org/wiki/Economy_of_Vietnam" target="_blank">Link</a></li>
<li class="citation">IMF - Vietnam and the IMF <a href="https://www.imf.org/en/Countries/VNM" target="_blank">Link</a></li>
<li class="citation">FocusEconomics - Vietnam Economic Indicators <a href="https://www.focus-economics.com/countries/vietnam" target="_blank">Link</a></li>
<li class="citation">National Statistics Office of Vietnam - Economic Reports <a href="https://www.gso.gov.vn/en/data-and-statistics/" target="_blank">Link</a></li>
<li class="citation">VietnamNet - Economic News and Analysis <a href="https://vietnamnet.vn/" target="_blank">Link</a></li>
<li class="citation">IMF - Article IV Mission Reports <a href="https://www.imf.org/en/Publications/CR" target="_blank">Link</a></li>
<li class="citation">Vietnam Briefing - Economic Analysis <a href="https://www.vietnam-briefing.com/" target="_blank">Link</a></li>
<li class="citation">Vietnam Investment Review - FDI Statistics <a href="https://vir.com.vn/" target="_blank">Link</a></li>
<li class="citation">Trading Economics - Vietnam Foreign Direct Investment <a href="https://tradingeconomics.com/vietnam/foreign-direct-investment" target="_blank">Link</a></li>
<li class="citation">White & Case - Regional Economic Outlook <a href="https://www.whitecase.com/" target="_blank">Link</a></li>
<li class="citation">Vietnam Economic Times <a href="https://vneconomictimes.com/" target="_blank">Link</a></li>
<li class="citation">Asian Development Bank - Vietnam Country Partnership <a href="https://www.adb.org/countries/viet-nam/main" target="_blank">Link</a></li>
<li class="citation">Ministry of Planning and Investment - Vietnam <a href="https://www.mpi.gov.vn/en/" target="_blank">Link</a></li>
</ul>
</section>
</div>
</main>
</div>
<footer>
<p>© 2025 Vietnam Economic Growth Report. All rights reserved.</p>
</footer>
<script>
function toggleContent(id) {
const content = document.getElementById(id);
if (content.style.display === "none" || content.style.display === "") {
content.style.display = "block";
} else {
content.style.display = "none";
}
}
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html> |