Make a ppt on topic HIV in pregnancy with recent updates of 25 slides for taking class for undergraduate students in detail
"HIV" AND "pregnancy" AND "antiretroviral"
HIV in pregnancy 2024 2025 guidelines WHO DHHS updates management
https://pmc.ncbi.nlm.nih.gov/articles/PMC12711239
mkdir -p /home/daytona/workspace/hiv-pregnancy-ppt
~/hiv-pregnancy-ppt/create_ppt.js
const pptxgen = require("pptxgenjs");
let pres = new pptxgen();
pres.layout = 'LAYOUT_WIDE';
pres.author = 'Medical Education';
pres.title = 'HIV in Pregnancy';
// Color Palette
const C = {
darkBg: '1A1A2E', // deep navy - title/section slides
midBg: '16213E', // dark blue
accentRed: 'E63946', // HIV red accent
accentGold: 'F4A261', // warm gold highlights
accentGreen: '2A9D8F', // teal green for positive outcomes
accentBlue: '457B9D', // medium blue
lightBg: 'F1FAEE', // near-white light bg
white: 'FFFFFF',
lightGray: 'E8E8E8',
textDark: '1D3557',
textMed: '264653',
accentPurple: '6D597A',
};
// Helper functions
function addSectionHeader(pres, title, subtitle, num) {
let slide = pres.addSlide();
// Full dark background
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.darkBg } });
// Colored left bar
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.12, h: 7.5, fill: { color: C.accentRed } });
// Section number circle
slide.addShape(pres.ShapeType.ellipse, { x: 1.2, y: 2.6, w: 1.3, h: 1.3, fill: { color: C.accentRed }, line: { color: C.accentRed } });
slide.addText(String(num), { x: 1.2, y: 2.6, w: 1.3, h: 1.3, fontSize: 36, bold: true, color: C.white, align: 'center', valign: 'middle' });
slide.addText(title, { x: 3.0, y: 2.5, w: 9.5, h: 1.2, fontSize: 38, bold: true, color: C.white, fontFace: 'Calibri' });
if (subtitle) {
slide.addText(subtitle, { x: 3.0, y: 3.8, w: 9.5, h: 0.7, fontSize: 20, color: C.accentGold, fontFace: 'Calibri', italic: true });
}
return slide;
}
function addContentSlide(pres, title, bullets, opts = {}) {
let slide = pres.addSlide();
// Background
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.lightBg } });
// Top bar
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 1.1, fill: { color: C.darkBg } });
// Red accent stripe
slide.addShape(pres.ShapeType.rect, { x: 0, y: 1.1, w: 13.3, h: 0.07, fill: { color: C.accentRed } });
// Title text
slide.addText(title, { x: 0.4, y: 0.12, w: 12.5, h: 0.85, fontSize: 26, bold: true, color: C.white, fontFace: 'Calibri', valign: 'middle' });
if (opts.twoCol && bullets.col2) {
// Two-column layout
const col1Items = bullets.col1.map((b, i) => ({
text: b.text || b, options: { bullet: { indent: 15 }, fontSize: b.size || 16, bold: b.bold || false, color: b.color || C.textDark, breakLine: true, paraSpaceAfter: 4 }
}));
const col2Items = bullets.col2.map((b, i) => ({
text: b.text || b, options: { bullet: { indent: 15 }, fontSize: b.size || 16, bold: b.bold || false, color: b.color || C.textDark, breakLine: true, paraSpaceAfter: 4 }
}));
// Col1 bg
slide.addShape(pres.ShapeType.rect, { x: 0.3, y: 1.3, w: 6.1, h: 5.8, fill: { color: C.white }, line: { color: C.lightGray, pt: 1 } });
// Col2 bg
slide.addShape(pres.ShapeType.rect, { x: 6.9, y: 1.3, w: 6.1, h: 5.8, fill: { color: C.white }, line: { color: C.lightGray, pt: 1 } });
if (bullets.col1header) {
slide.addShape(pres.ShapeType.rect, { x: 0.3, y: 1.3, w: 6.1, h: 0.45, fill: { color: C.accentBlue } });
slide.addText(bullets.col1header, { x: 0.3, y: 1.3, w: 6.1, h: 0.45, fontSize: 15, bold: true, color: C.white, align: 'center', valign: 'middle' });
}
if (bullets.col2header) {
slide.addShape(pres.ShapeType.rect, { x: 6.9, y: 1.3, w: 6.1, h: 0.45, fill: { color: C.accentGreen } });
slide.addText(bullets.col2header, { x: 6.9, y: 1.3, w: 6.1, h: 0.45, fontSize: 15, bold: true, color: C.white, align: 'center', valign: 'middle' });
}
slide.addText(col1Items, { x: 0.4, y: 1.85, w: 5.9, h: 5.1, fontSize: 15, color: C.textDark, fontFace: 'Calibri', valign: 'top' });
slide.addText(col2Items, { x: 7.0, y: 1.85, w: 5.9, h: 5.1, fontSize: 15, color: C.textDark, fontFace: 'Calibri', valign: 'top' });
} else {
// Single column
let contentBg = opts.contentBg || C.white;
slide.addShape(pres.ShapeType.rect, { x: 0.3, y: 1.25, w: 12.7, h: 5.9, fill: { color: contentBg }, line: { color: C.lightGray, pt: 1 } });
const items = bullets.map((b) => ({
text: b.text || b,
options: {
bullet: b.noBullet ? false : { indent: 20 },
fontSize: b.size || 17,
bold: b.bold || false,
color: b.color || C.textDark,
breakLine: true,
paraSpaceAfter: b.spacer ? 2 : 6,
indentLevel: b.indent || 0
}
}));
slide.addText(items, { x: 0.5, y: 1.35, w: 12.3, h: 5.7, fontFace: 'Calibri', valign: 'top' });
}
// Slide note bottom
if (opts.note) {
slide.addShape(pres.ShapeType.rect, { x: 0, y: 7.2, w: 13.3, h: 0.3, fill: { color: C.accentBlue } });
slide.addText(opts.note, { x: 0.3, y: 7.2, w: 12.7, h: 0.3, fontSize: 11, color: C.white, italic: true });
}
return slide;
}
function addTableSlide(pres, title, headers, rows, opts = {}) {
let slide = pres.addSlide();
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.lightBg } });
slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 1.1, fill: { color: C.darkBg } });
slide.addShape(pres.ShapeType.rect, { x: 0, y: 1.1, w: 13.3, h: 0.07, fill: { color: C.accentRed } });
slide.addText(title, { x: 0.4, y: 0.12, w: 12.5, h: 0.85, fontSize: 26, bold: true, color: C.white, fontFace: 'Calibri', valign: 'middle' });
let tableRows = [];
// Header row
tableRows.push(headers.map(h => ({
text: h,
options: { bold: true, color: C.white, fill: { color: C.accentBlue }, fontSize: 14, align: 'center' }
})));
rows.forEach((row, ri) => {
tableRows.push(row.map((cell, ci) => ({
text: cell,
options: { fontSize: 13, color: C.textDark, fill: { color: ri % 2 === 0 ? C.white : 'EBF5FB' }, align: ci === 0 ? 'left' : 'left' }
})));
});
slide.addTable(tableRows, {
x: 0.3, y: 1.25, w: 12.7,
colW: opts.colW || null,
border: { pt: 1, color: C.lightGray },
rowH: opts.rowH || 0.55,
});
return slide;
}
// ============================================================
// SLIDE 1 - TITLE SLIDE
// ============================================================
let s1 = pres.addSlide();
s1.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.darkBg } });
// Decorative circles
s1.addShape(pres.ShapeType.ellipse, { x: 10.5, y: -1.2, w: 4.5, h: 4.5, fill: { color: '1F2D4A' }, line: { color: '1F2D4A' } });
s1.addShape(pres.ShapeType.ellipse, { x: -1.5, y: 4.5, w: 4.0, h: 4.0, fill: { color: '1F2D4A' }, line: { color: '1F2D4A' } });
// Red accent bar
s1.addShape(pres.ShapeType.rect, { x: 0, y: 2.8, w: 0.18, h: 2.8, fill: { color: C.accentRed } });
// HIV red ribbon icon (approximation using shapes)
s1.addShape(pres.ShapeType.ellipse, { x: 11.8, y: 1.5, w: 0.5, h: 0.5, fill: { color: C.accentRed }, line: { color: C.accentRed } });
s1.addText('HIV IN PREGNANCY', {
x: 0.6, y: 1.5, w: 10.5, h: 1.6, fontSize: 54, bold: true, color: C.white,
fontFace: 'Calibri', charSpacing: 3
});
s1.addText('Comprehensive Review with 2025 Updates', {
x: 0.6, y: 3.2, w: 10.5, h: 0.7, fontSize: 22, color: C.accentGold,
fontFace: 'Calibri', italic: true
});
s1.addShape(pres.ShapeType.rect, { x: 0.6, y: 4.0, w: 8.0, h: 0.04, fill: { color: C.accentRed } });
s1.addText('Undergraduate Medical Education | Department of Obstetrics & Gynecology', {
x: 0.6, y: 4.15, w: 10.5, h: 0.5, fontSize: 16, color: 'A8DADC', fontFace: 'Calibri'
});
s1.addText('Epidemiology | Pathophysiology | Diagnosis | ART Management | PMTCT | Delivery | Neonatal Care', {
x: 0.6, y: 4.75, w: 11.5, h: 0.4, fontSize: 13, color: '6B8CAE', fontFace: 'Calibri'
});
s1.addText('Based on WHO 2024, DHHS/US Guidelines June 2025, BHIVA 2025, IAS-USA 2024-25', {
x: 0.6, y: 6.8, w: 11.5, h: 0.4, fontSize: 12, color: '6B8CAE', fontFace: 'Calibri', italic: true
});
// ============================================================
// SLIDE 2 - LEARNING OBJECTIVES
// ============================================================
let s2 = pres.addSlide();
s2.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.lightBg } });
s2.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 1.1, fill: { color: C.darkBg } });
s2.addShape(pres.ShapeType.rect, { x: 0, y: 1.1, w: 13.3, h: 0.07, fill: { color: C.accentGold } });
s2.addText('LEARNING OBJECTIVES', { x: 0.4, y: 0.12, w: 12.5, h: 0.85, fontSize: 26, bold: true, color: C.white, fontFace: 'Calibri', valign: 'middle' });
const objectives = [
{ num: '1', text: 'Understand the global and national epidemiology of HIV in pregnancy', color: C.accentRed },
{ num: '2', text: 'Describe HIV pathophysiology, transmission routes and natural history', color: C.accentBlue },
{ num: '3', text: 'Outline antenatal screening protocols and diagnostic workup', color: C.accentGreen },
{ num: '4', text: 'Apply current ART regimens in pregnancy — preferred vs. alternative (2025 updates)', color: C.accentGold },
{ num: '5', text: 'Explain principles of Prevention of Mother-to-Child Transmission (PMTCT)', color: C.accentPurple },
{ num: '6', text: 'Manage intrapartum care, mode of delivery and postpartum considerations', color: C.accentRed },
{ num: '7', text: 'Counsel on neonatal prophylaxis, infant feeding and HIV testing of the newborn', color: C.accentBlue },
];
objectives.forEach((obj, i) => {
let yPos = 1.3 + i * 0.82;
s2.addShape(pres.ShapeType.rect, { x: 0.3, y: yPos, w: 12.7, h: 0.72, fill: { color: C.white }, line: { color: C.lightGray, pt: 1 } });
s2.addShape(pres.ShapeType.rect, { x: 0.3, y: yPos, w: 0.5, h: 0.72, fill: { color: obj.color } });
s2.addText(obj.num, { x: 0.3, y: yPos, w: 0.5, h: 0.72, fontSize: 18, bold: true, color: C.white, align: 'center', valign: 'middle' });
s2.addText(obj.text, { x: 0.9, y: yPos, w: 11.9, h: 0.72, fontSize: 16, color: C.textDark, fontFace: 'Calibri', valign: 'middle' });
});
// ============================================================
// SLIDE 3 - SECTION HEADER: EPIDEMIOLOGY
// ============================================================
addSectionHeader(pres, 'EPIDEMIOLOGY', 'Global Burden & Indian Scenario', 1);
// ============================================================
// SLIDE 4 - GLOBAL EPIDEMIOLOGY
// ============================================================
addContentSlide(pres, 'Global Epidemiology of HIV in Pregnancy', [
{ text: 'Global Burden (UNAIDS 2024 Data)', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: '~39.9 million people living with HIV globally (2023)', size: 16 },
{ text: '~1.5 million new HIV infections per year', size: 16 },
{ text: '~1.3 million pregnant women living with HIV worldwide', size: 16 },
{ text: '~130,000 new child HIV infections occurred in 2023 (down from ~3.4 million peak in 1990s)', size: 16 },
{ text: ' ', size: 8, noBullet: true },
{ text: 'Sub-Saharan Africa', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: '70% of all pregnant women with HIV live in sub-Saharan Africa', size: 16 },
{ text: 'Mother-to-child transmission (MTCT) rates reduced from 25-40% (untreated) to < 2% with ART', size: 16 },
{ text: ' ', size: 8, noBullet: true },
{ text: 'India', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'Estimated 2.4 million PLHIV in India (NACO 2023)', size: 16 },
{ text: 'Prevalence among pregnant women: ~0.3% nationally, higher in southern states', size: 16 },
{ text: 'PPTCT (Prevention of Parent-to-Child Transmission) program covers >95% of ANC facilities', size: 16 },
{ text: '~22,000 HIV-positive pregnant women identified annually in India', size: 16 },
], { note: 'Source: UNAIDS Global AIDS Update 2024 | NACO Annual Report 2023' });
// ============================================================
// SLIDE 5 - SECTION HEADER: PATHOPHYSIOLOGY
// ============================================================
addSectionHeader(pres, 'PATHOPHYSIOLOGY', 'HIV Biology & Routes of Transmission', 2);
// ============================================================
// SLIDE 6 - HIV PATHOPHYSIOLOGY
// ============================================================
addContentSlide(pres, 'HIV: Biology & Immunopathology', [
{ text: 'HIV Structure', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'Retrovirus (Lentivirus family) — HIV-1 (global) and HIV-2 (West Africa)', size: 16 },
{ text: 'Single-stranded RNA genome; reverse transcriptase converts to DNA (integrated provirus)', size: 16 },
{ text: ' ', size: 8, noBullet: true },
{ text: 'Cellular Targets & Mechanism', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'Primary target: CD4+ T-lymphocytes (helper T cells) — gp120 binds CD4 + CCR5/CXCR4 co-receptors', size: 16 },
{ text: 'Also infects macrophages and dendritic cells', size: 16 },
{ text: 'Progressive CD4 depletion → cellular immunodeficiency → opportunistic infections', size: 16 },
{ text: ' ', size: 8, noBullet: true },
{ text: 'Natural History', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'Acute HIV infection (2–4 weeks): flu-like illness, high viremia, CD4 drops transiently', size: 16 },
{ text: 'Chronic/Clinical Latency: virus replicates at low level, CD4 slowly declines (~10 yrs untreated)', size: 16 },
{ text: 'AIDS (advanced disease): CD4 < 200 cells/μL or AIDS-defining illness', size: 16 },
{ text: ' ', size: 8, noBullet: true },
{ text: 'Why Pregnancy Matters', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: 'Normal CD4 count falls ~10% during pregnancy; viral load may slightly increase', size: 16 },
{ text: 'Pregnancy does not accelerate HIV progression with adequate ART', size: 16 },
], { note: 'CD4 count & viral load are the two key parameters guiding management' });
// ============================================================
// SLIDE 7 - ROUTES OF VERTICAL TRANSMISSION
// ============================================================
addContentSlide(pres, 'Routes of Vertical (Mother-to-Child) HIV Transmission', [
{ text: 'Timing of Transmission', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: ' ', size: 6, noBullet: true },
{ text: 'In Utero (Antepartum) ─ 5-10% of total MTCT', bold: true, size: 17, color: C.accentBlue },
{ text: 'Hematogenous spread via placenta; virus crosses especially in 3rd trimester', size: 15, indent: 1 },
{ text: 'Higher risk with chorioamnionitis, placental inflammation', size: 15, indent: 1 },
{ text: ' ', size: 6, noBullet: true },
{ text: 'Intrapartum (Labor/Delivery) ─ 50-80% of total MTCT', bold: true, size: 17, color: C.accentRed },
{ text: 'Infant exposed to infected maternal blood/cervicovaginal secretions during passage through birth canal', size: 15, indent: 1 },
{ text: 'Risk increases with: prolonged ROM (>4 hrs), vaginal delivery with high VL, chorioamnionitis', size: 15, indent: 1 },
{ text: 'Cesarean delivery reduces intrapartum risk by ~50-70% when VL >1000 copies/mL', size: 15, indent: 1 },
{ text: ' ', size: 6, noBullet: true },
{ text: 'Postpartum (Breastfeeding) ─ 14% per year of breastfeeding', bold: true, size: 17, color: C.accentGold },
{ text: 'Risk per liter of breast milk: higher with mastitis, cracked nipples, high maternal VL', size: 15, indent: 1 },
{ text: 'Extended breastfeeding doubles cumulative risk if no ARV prophylaxis', size: 15, indent: 1 },
{ text: ' ', size: 6, noBullet: true },
{ text: 'Key Determinant: Maternal Viral Load (VL)', bold: true, size: 17, color: C.accentGreen },
{ text: 'Dugdale et al. (Lancet 2025): Undetectable VL (<50 copies/mL) → MTCT risk < 0.5%', size: 15, indent: 1 },
{ text: 'VL >10,000 copies/mL without ART → MTCT risk ~25-40%', size: 15, indent: 1 },
], { note: 'Lancet 2025 Meta-analysis (PMID 40652949): Maternal VL is the single strongest predictor of MTCT' });
// ============================================================
// SLIDE 8 - SECTION HEADER: ANTENATAL SCREENING
// ============================================================
addSectionHeader(pres, 'ANTENATAL SCREENING', 'Diagnosis & Workup in Pregnancy', 3);
// ============================================================
// SLIDE 9 - HIV TESTING IN PREGNANCY
// ============================================================
addContentSlide(pres, 'HIV Testing Strategy in Pregnancy', [
{ text: 'Universal Opt-Out Screening', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'ALL pregnant women should be offered HIV testing at first ANC visit (opt-out approach)', size: 16 },
{ text: 'Test even if patient appears low-risk; do not base on risk perception', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Repeat Testing (WHO/DHHS 2025)', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: '1st ANC visit — baseline', size: 16 },
{ text: '28–32 weeks — repeat in high-prevalence areas or seronegative women with risk factors', size: 16 },
{ text: 'At time of labor — rapid test if untested or status unknown', size: 16 },
{ text: 'Postpartum testing if no antenatal test', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Indian ICTC Protocol (NACO)', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'Pre-test counseling → Rapid HIV 1/2 test → Post-test counseling', size: 16 },
{ text: 'Reactive result: Repeat with different test; if both reactive → confirmed positive', size: 16 },
{ text: 'Discordant results → 3rd tiebreaker test (Western Blot or ELISA)', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Diagnosis in Labour (Emergency)', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: 'Rapid test result available in <30 min; initiate single-dose NVP + AZT if positive', size: 16 },
{ text: 'Do NOT withhold ART while awaiting confirmatory results if strong suspicion', size: 16 },
], { note: 'June 2025 DHHS Update: Expedited testing recommended for women presenting in labour without prior testing' });
// ============================================================
// SLIDE 10 - INITIAL WORKUP AFTER HIV DIAGNOSIS IN PREGNANCY
// ============================================================
addTableSlide(pres, 'Initial Workup After HIV Diagnosis in Pregnancy',
['Investigation', 'Purpose / Notes'],
[
['HIV RNA (Viral Load)', 'Baseline viremia; repeated at 2-4 wks post-ART, monthly till undetectable, then every 3 months; at 34-36 wks to guide delivery mode'],
['CD4+ T-cell count', 'Baseline immunity; guide OI prophylaxis (PCP if <200, Toxoplasma if <100); not required to initiate ART'],
['Genotypic resistance testing', 'Recommended before starting ART; guides drug selection'],
['CBC, LFTs, Renal function', 'Baseline; monitor drug toxicity (TDF nephrotoxicity, AZT anaemia)'],
['HBsAg, Anti-HCV, VDRL, TB screening', 'Co-infections frequent; TDF + 3TC covers HBV; TB must be excluded before ART'],
['Urine analysis + culture', 'UTI common in pregnancy; nephrotoxic ART monitoring'],
['Glucose-6-phosphate dehydrogenase', 'Before dapsone/primaquine for OI prophylaxis'],
['Pap smear / HPV testing', 'Higher cervical dysplasia risk in HIV+'],
['Toxoplasma IgG, CMV IgG', 'Baseline serostatus for OI risk assessment'],
['Partner & children testing', 'Disclosure counseling + partner/child HIV status'],
],
{ rowH: 0.49, colW: [3.2, 9.5] }
);
// ============================================================
// SLIDE 11 - SECTION HEADER: ART IN PREGNANCY
// ============================================================
addSectionHeader(pres, 'ANTIRETROVIRAL THERAPY', 'Treatment Regimens & 2025 Updates', 4);
// ============================================================
// SLIDE 12 - ART PRINCIPLES IN PREGNANCY
// ============================================================
addContentSlide(pres, 'Principles of ART in Pregnancy', [
{ text: 'ART is MANDATORY for ALL HIV-positive pregnant women — regardless of CD4 count or viral load', bold: true, size: 17, color: C.accentRed },
{ text: 'Dual purpose: (1) Treat maternal infection (2) Prevent MTCT', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Goals of ART in Pregnancy', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'Achieve and maintain undetectable viral load (< 50 copies/mL) by delivery', size: 16 },
{ text: 'Preserve/restore maternal CD4 count and immune function', size: 16 },
{ text: 'Minimize fetal/neonatal drug toxicity', size: 16 },
{ text: 'Prevent drug resistance', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'When to Start ART?', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'As soon as possible after diagnosis (ideally same day or within 1-2 weeks)', size: 16 },
{ text: '⚠️ Do NOT withhold or delay ART to "protect the fetus" in 1st trimester — fetal risk of untreated HIV > drug risk', size: 16, color: C.accentRed },
{ text: 'DHHS 2025: ART should NOT be avoided or withheld in early pregnancy to prevent preterm birth', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Standard Backbone Regimen', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: '2 NRTIs (backbone) + 1 INSTI or 1 PI (third drug)', size: 16 },
{ text: 'Preferred NRTI backbone: Tenofovir disoproxil fumarate (TDF) + Lamivudine (3TC) or Emtricitabine (FTC)', size: 16 },
{ text: 'Alternative backbone: Tenofovir alafenamide (TAF) + FTC; Abacavir (ABC) + 3TC (if HLA-B*57:01 negative)', size: 16 },
], { note: 'DHHS June 2025 Guideline Update | IAS-USA 2025 (PMID 39616604)' });
// ============================================================
// SLIDE 13 - PREFERRED ART REGIMENS (2025)
// ============================================================
addTableSlide(pres, 'Preferred & Alternative ART Regimens in Pregnancy (2025 Updates)',
['Category', 'Regimen', 'Key Notes'],
[
['✅ PREFERRED (New 2025)', 'DTG 50 mg + TDF/3TC\n(Dolutegravir + Tenofovir + Lamivudine)', 'WHO preferred; once daily; high barrier to resistance; neural tube defect risk very low (< 0.1%) — similar to background rate'],
['✅ PREFERRED (New June 2025 DHHS)', 'BIC/TAF/FTC\n(Bictegravir + TAF + Emtricitabine = Biktarvy)', 'Newly upgraded to Preferred in June 2025 DHHS update; sufficient PK, efficacy & safety data now available'],
['✅ PREFERRED', 'DTG/ABC/3TC (if HLA-B*57:01 negative)', 'Single tablet once daily; avoid if HLA-B*57:01 positive (hypersensitivity risk)'],
['✅ PREFERRED (on ART already)', 'RAL (Raltegravir) + TDF/FTC', 'Preferred if already on RAL; well-established safety profile in pregnancy'],
['⚠️ ALTERNATIVE', 'DRV/r or DRV/c + TDF/FTC or ABC/3TC', 'Darunavir-based PI; use if INSTI not possible; darunavir must be boosted'],
['⚠️ ALTERNATIVE', 'EFV 400 mg + TDF/3TC', 'EFV 600 mg NOT preferred in 1st trimester; 400 mg acceptable alternative'],
['❌ AVOID', 'Efavirenz 600 mg in 1st trimester', 'Potential teratogenicity (neural tube defects in animal studies)'],
['❌ AVOID', 'Stavudine (d4T), Didanosine (ddI)', 'High mitochondrial toxicity; lactic acidosis risk in pregnancy'],
['❌ AVOID (unless no option)', 'Nevirapine as 1st-line (single dose OK intrapartum)', 'High hepatotoxicity risk when CD4 >250; drug rash'],
],
{ rowH: 0.55, colW: [2.5, 3.8, 6.4] }
);
// ============================================================
// SLIDE 14 - DOLUTEGRAVIR SAFETY UPDATE
// ============================================================
addContentSlide(pres, 'Dolutegravir (DTG) in Pregnancy — 2025 Safety Evidence', [
{ text: 'Background Concern (2018)', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'Initial Tsepamo study (Botswana) reported NTD rate 0.3% with DTG periconception vs. 0.1% with non-DTG', size: 16 },
{ text: 'Caused concern about spina bifida / anencephaly with DTG use at conception', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Current Evidence (2024-2025)', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'Systematic review & meta-analysis by Payra et al. (Clin Drug Investig 2024, PMID 39302585):', size: 16 },
{ text: 'Pooled NTD rate with DTG: 0.12% — similar to background population rate (~0.05-0.10%)', size: 15, indent: 1 },
{ text: 'Expanded Tsepamo data (2022): NTD risk no longer significantly elevated', size: 15, indent: 1 },
{ text: 'WHO (2024) and DHHS (2025): DTG recommended as PREFERRED agent including periconception', size: 15, indent: 1 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Folic Acid Co-administration', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: '5 mg folic acid daily BEFORE conception and throughout 1st trimester — recommended with all ART', size: 16 },
{ text: '400 mcg sufficient if standard supplementation; 5 mg if high-risk (prior NTD, anti-epileptics)', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Conclusion for UG Students', bold: true, size: 17, color: C.accentBlue, noBullet: true },
{ text: 'DTG is SAFE in pregnancy. The NTD concern is reassured by large-scale data. WHO 2024 prefers DTG.', size: 16, bold: true, color: C.accentGreen },
], { note: 'Payra et al. Clin Drug Investig 2024 (PMID 39302585) | WHO Consolidated Guidelines 2024' });
// ============================================================
// SLIDE 15 - SECTION HEADER: PMTCT
// ============================================================
addSectionHeader(pres, 'PREVENTION OF MOTHER-TO-CHILD\nTRANSMISSION (PMTCT)', 'The 4 Prongs Approach', 5);
// ============================================================
// SLIDE 16 - PMTCT 4 PRONGS
// ============================================================
let s16 = pres.addSlide();
s16.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.lightBg } });
s16.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 1.1, fill: { color: C.darkBg } });
s16.addShape(pres.ShapeType.rect, { x: 0, y: 1.1, w: 13.3, h: 0.07, fill: { color: C.accentRed } });
s16.addText('WHO PMTCT Strategy: Four Prongs', { x: 0.4, y: 0.12, w: 12.5, h: 0.85, fontSize: 26, bold: true, color: C.white, fontFace: 'Calibri', valign: 'middle' });
const prongs = [
{ num: 'Prong 1', title: 'Primary Prevention of HIV among Women of Childbearing Age', color: C.accentRed, desc: 'Behaviour change communication, condom promotion, HIV testing, PrEP for serodiscordant couples, treatment of STIs' },
{ num: 'Prong 2', title: 'Prevention of Unintended Pregnancies in HIV+ Women', color: C.accentBlue, desc: 'Family planning counseling, contraception provision (with attention to ART-drug interactions), reproductive autonomy' },
{ num: 'Prong 3', title: 'Prevention of HIV Transmission from HIV+ Women to Their Infants', color: C.accentGreen, desc: 'Universal ART in pregnancy, intrapartum care, avoidance of breastfeeding or safe breastfeeding with ARV prophylaxis, neonatal PEP' },
{ num: 'Prong 4', title: 'Treatment, Care & Support for HIV+ Women, Their Infants & Families', color: C.accentGold, desc: 'Long-term ART continuation, PMTCT integrated with MCH services, psychosocial support, cotrimoxazole prophylaxis, nutrition' },
];
prongs.forEach((p, i) => {
let y = 1.25 + i * 1.5;
s16.addShape(pres.ShapeType.rect, { x: 0.3, y: y, w: 12.7, h: 1.3, fill: { color: C.white }, line: { color: C.lightGray, pt: 1 } });
s16.addShape(pres.ShapeType.rect, { x: 0.3, y: y, w: 1.8, h: 1.3, fill: { color: p.color } });
s16.addText(p.num, { x: 0.3, y: y, w: 1.8, h: 0.55, fontSize: 14, bold: true, color: C.white, align: 'center', valign: 'middle' });
s16.addText(p.title, { x: 2.2, y: y, w: 10.5, h: 0.55, fontSize: 15, bold: true, color: p.color, fontFace: 'Calibri', valign: 'middle' });
s16.addText(p.desc, { x: 2.2, y: y + 0.55, w: 10.5, h: 0.75, fontSize: 13, color: C.textDark, fontFace: 'Calibri', valign: 'top' });
});
// ============================================================
// SLIDE 17 - MONITORING DURING PREGNANCY
// ============================================================
addContentSlide(pres, 'Antenatal Monitoring Schedule for HIV+ Women (2025)', [
{ text: 'Viral Load Monitoring (KEY)', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'At 1st ANC visit — establish baseline viremia', size: 16 },
{ text: '2–4 weeks after starting/changing ART — check response', size: 16 },
{ text: 'Monthly until VL undetectable', size: 16 },
{ text: 'Every 3 months once undetectable', size: 16 },
{ text: 'At 34–36 weeks — to decide mode of delivery', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'CD4 Count Monitoring', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'At baseline; every 3-6 months (not strictly required to initiate ART)', size: 16 },
{ text: 'CD4 < 200: Add cotrimoxazole prophylaxis (PCP, Toxoplasma)', size: 16 },
{ text: 'CD4 < 100: Add fluconazole (Cryptococcus), azithromycin (MAC)', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Additional Maternal Monitoring', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'CBC every trimester (AZT: anaemia risk); Renal function if on TDF', size: 16 },
{ text: 'Fetal growth scan at 28-32 wks (IUGR risk in HIV-positive pregnancies)', size: 16 },
{ text: 'Screen for preterm labour, gestational diabetes, pre-eclampsia', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Vaccination Review', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: 'Pneumococcal, influenza, Tdap, COVID-19, Hepatitis B — if not immune', size: 16 },
{ text: 'AVOID live vaccines (MMR, Varicella) if CD4 < 200', size: 16 },
], { note: 'PMC Brazil 2025 Update (PMID cited): Minimum 3 VL measurements in pregnancy' });
// ============================================================
// SLIDE 18 - SECTION HEADER: INTRAPARTUM
// ============================================================
addSectionHeader(pres, 'INTRAPARTUM MANAGEMENT', 'Mode of Delivery & Labour Care', 6);
// ============================================================
// SLIDE 19 - INTRAPARTUM MANAGEMENT
// ============================================================
addContentSlide(pres, 'Intrapartum Management of HIV-Positive Women', [
{ text: 'Mode of Delivery — Based on 34-36 Week Viral Load', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: ' ', size: 6, noBullet: true },
{ text: 'VL < 1000 copies/mL (on ART, adherent)', bold: true, size: 17, color: C.accentGreen },
{ text: 'Vaginal delivery is SAFE — no additional MTCT benefit from cesarean', size: 15, indent: 1 },
{ text: 'Continue oral ART regimen through labour — IV zidovudine NOT required', size: 15, indent: 1 },
{ text: ' ', size: 6, noBullet: true },
{ text: 'VL ≥ 1000 copies/mL (OR viral load unknown near delivery)', bold: true, size: 17, color: C.accentRed },
{ text: 'Scheduled elective cesarean delivery at 38 weeks — reduces MTCT by 50-70%', size: 15, indent: 1 },
{ text: 'IV Zidovudine (AZT) infusion: 2 mg/kg IV loading dose, then 1 mg/kg/hr from onset of labour/CS till cord clamp', size: 15, indent: 1 },
{ text: 'Atowoju 2024 SR (PMID 38573155): Untreated maternal HIV significantly increases preterm, LBW, stillbirth', size: 15, indent: 1 },
{ text: ' ', size: 6, noBullet: true },
{ text: 'General Intrapartum Precautions', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'Minimize invasive fetal monitoring (avoid fetal scalp electrode, scalp blood sampling)', size: 16 },
{ text: 'Avoid artificial rupture of membranes unless necessary; minimize duration of ROM', size: 16 },
{ text: 'Episiotomy only if needed; minimize trauma to both mother and baby', size: 16 },
{ text: 'Universal precautions for all healthcare workers', size: 16 },
{ text: 'Placenta: double-bag and handle as infected tissue', size: 16 },
], { note: 'ACOG | DHHS | BHIVA 2025: Vaginal delivery safe if undetectable VL; IV AZT not needed if VL undetectable' });
// ============================================================
// SLIDE 20 - SECTION HEADER: NEONATAL CARE
// ============================================================
addSectionHeader(pres, 'NEONATAL CARE & INFANT PROPHYLAXIS', 'Preventing Postnatal Transmission', 7);
// ============================================================
// SLIDE 21 - NEONATAL PROPHYLAXIS
// ============================================================
addContentSlide(pres, 'Neonatal Antiretroviral Prophylaxis', [
{ text: 'Initiate ARV prophylaxis WITHIN 6-12 HOURS of birth — do not delay', bold: true, size: 17, color: C.accentRed },
{ text: ' ', size: 7, noBullet: true },
{ text: 'LOW RISK — Mother on ART with undetectable VL', bold: true, size: 17, color: C.accentGreen, noBullet: true },
{ text: 'Neonatal ZDV monotherapy: 4 mg/kg/dose PO twice daily x 4 weeks', size: 16 },
{ text: 'Alternative: NVP once daily x 4 weeks (if ZDV not available)', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'HIGH RISK — Mother with detectable VL, no ART, or unknown HIV status', bold: true, size: 17, color: C.accentRed, noBullet: true },
{ text: 'DUAL therapy: ZDV (4 mg/kg BD) + NVP (4 mg/kg OD) x 6 weeks', size: 16 },
{ text: 'Some guidelines recommend TRIPLE therapy (ZDV + NVP + 3TC) for very high risk (e.g., no maternal ART)', size: 16 },
{ text: 'BHIVA 2025: 3-drug neonatal PEP (ZDV + NVP + 3TC) recommended for high-risk infants', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Standard Neonatal Care', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'Bathe baby immediately after birth to remove maternal blood/secretions', size: 16 },
{ text: 'Suction gently; minimize mucosal trauma; suction before first breath if meconium', size: 16 },
{ text: 'Cotrimoxazole prophylaxis from 4-6 weeks until HIV status confirmed negative', size: 16 },
{ text: 'Routine vaccinations: BCG, OPV, Hep B — safe regardless of HIV exposure', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'BHIVA 2025 Update on HIV-2', bold: true, size: 17, color: C.accentGold, noBullet: true },
{ text: 'ARV management for HIV-2 exposed infants: follow HIV-1 protocols using drugs active against HIV-2', size: 16 },
], { note: 'BHIVA 2025 | DHHS June 2025 Update | Biktarvy & DTG regimens now Preferred' });
// ============================================================
// SLIDE 22 - INFANT FEEDING & HIV TESTING
// ============================================================
addContentSlide(pres, 'Infant Feeding & Neonatal HIV Testing', [
{ text: 'Infant Feeding', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'High-income settings (e.g., Europe, North America):', bold: true, size: 16, color: C.accentBlue },
{ text: 'AVOID breastfeeding entirely; use commercial infant formula (eliminates postnatal transmission risk)', size: 15, indent: 1 },
{ text: 'Low/middle-income settings (e.g., India, Sub-Saharan Africa):', bold: true, size: 16, color: C.accentGreen },
{ text: 'WHO 2023-2025: When formula is not safe/affordable, exclusive breastfeeding WITH maternal ART recommended', size: 15, indent: 1 },
{ text: 'Mother must be virologically suppressed (VL < 50) and adhere to ART', size: 15, indent: 1 },
{ text: 'Breastfeeding adds ~1% MTCT risk per year when mother is virologically suppressed on ART', size: 15, indent: 1 },
{ text: 'In India (NACO): Infant formula provided FREE for 6 months; mothers counseled to avoid breastfeeding', size: 15, indent: 1 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Neonatal HIV Diagnostic Testing', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'HIV DNA PCR (NOT antibody test) — as maternal antibodies cross placenta and persist up to 18 months', bold: true, size: 16 },
{ text: 'Testing schedule:', bold: true, size: 16, color: C.accentBlue },
{ text: 'At birth (if high-risk exposure)', size: 15, indent: 1 },
{ text: '14-21 days of age', size: 15, indent: 1 },
{ text: '1-2 months', size: 15, indent: 1 },
{ text: '4-6 months (final early infant diagnosis if formula fed)', size: 15, indent: 1 },
{ text: 'Antibody test at 18-24 months — confirms seroreversion (negative = uninfected)', size: 15, indent: 1 },
{ text: 'Two negative PCR results (≥4 weeks after stopping ARV prophylaxis) = presumptive HIV-negative', size: 16, bold: true, color: C.accentGreen },
], { note: 'WHO 2024-2025 Infant Feeding Guidelines | BHIVA 2025 Pregnancy Guidelines' });
// ============================================================
// SLIDE 23 - OBSTETRIC COMPLICATIONS IN HIV
// ============================================================
addContentSlide(pres, 'Obstetric Complications & HIV', [
{ text: 'Maternal Complications', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'Increased risk: Preterm birth, PROM, chorioamnionitis, PPH, wound infections post-CS', size: 16 },
{ text: 'HIV + untreated: stillbirth rate 2-3x higher (Atowoju et al. IJGO 2024, PMID 38573155)', size: 16 },
{ text: 'CD4 < 200: Increased risk of opportunistic infections (PCP, CMV, Cryptococcosis, TB)', size: 16 },
{ text: 'Drug toxicity: AZT → anaemia, TDF → nephrotoxicity/bone density reduction, LPV/r → gestational DM, hepatotoxicity', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Fetal/Neonatal Complications', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'IUGR (especially with advanced maternal disease/immunosuppression)', size: 16 },
{ text: 'Preterm birth (increased even with ART — mechanism unclear; ART should NOT be withheld)', size: 16 },
{ text: 'Low birth weight, small for gestational age', size: 16 },
{ text: 'Congenital HIV (if PMTCT fails): Rapid-progressor vs. slow-progressor disease in infant', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Psychiatric & Psychosocial Impact (Ameri et al. AIDS Care 2024, PMID 36328977)', bold: true, size: 18, color: C.accentGold, noBullet: true },
{ text: 'Perinatal HIV exposure (even in uninfected children) → elevated psychiatric risk (anxiety, depression)', size: 16 },
{ text: 'Mother: HIV disclosure anxiety, social stigma, depression — screen routinely', size: 16 },
{ text: 'Multidisciplinary team essential: Obstetrician, Infectious Disease, Neonatologist, Social worker', size: 16 },
], { note: 'Systematic Review (Atowoju IJGO 2024) | DHHS 2025: ART should not be withheld to reduce preterm birth' });
// ============================================================
// SLIDE 24 - POSTPARTUM CARE & CONTRACEPTION
// ============================================================
addContentSlide(pres, 'Postpartum Care, Contraception & Special Situations', [
{ text: 'Postpartum ART & Follow-Up', bold: true, size: 18, color: C.accentRed, noBullet: true },
{ text: 'Continue lifelong ART — do NOT stop after delivery', size: 16 },
{ text: 'Viral load check at 6-8 weeks postpartum', size: 16 },
{ text: 'Monitor for postpartum depression (higher prevalence in HIV+ women)', size: 16 },
{ text: 'Lactation inhibition: cabergoline 0.5 mg x 2 tabs single dose (if not breastfeeding)', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Contraception (ART Drug Interactions)', bold: true, size: 18, color: C.accentBlue, noBullet: true },
{ text: 'EFV, LPV/r, DRV/r: CYP3A4 inducers/inhibitors — reduce effectiveness of estrogen-progestin pills', size: 16 },
{ text: 'Todd et al. SR (Contraception 2024, PMID 38762199): Significant DDIs between ARVs and hormonal contraception', size: 16 },
{ text: 'PREFERRED: Intrauterine device (IUD), barrier methods, depot medroxyprogesterone (DMPA)', size: 16 },
{ text: 'DTG-based ART: minimal drug interactions — oral contraceptives generally safe', size: 16 },
{ text: ' ', size: 7, noBullet: true },
{ text: 'Serodiscordant Couples & PrEP', bold: true, size: 18, color: C.accentGreen, noBullet: true },
{ text: 'HIV-negative partner: Oral TDF/FTC (Truvada) as PrEP — highly effective', size: 16 },
{ text: 'Long-acting injectable cabotegravir (CAB-LA) as PrEP — WHO 2024 recommended; 94% countries have adopted PrEP guidelines', size: 16 },
{ text: 'Undetectable = Untransmittable (U=U): Partner with undetectable VL has effectively zero sexual transmission risk', size: 16, bold: true, color: C.accentGreen },
{ text: 'India: Assisted conception options for serodiscordant couples (sperm washing + IVF)', size: 16 },
], { note: 'DHHS 2025 | BHIVA 2025 | WHO Global AIDS Update 2024 | Todd et al. Contraception 2024' });
// ============================================================
// SLIDE 25 - SUMMARY & KEY TAKE-HOME MESSAGES
// ============================================================
let s25 = pres.addSlide();
s25.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 7.5, fill: { color: C.darkBg } });
s25.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 7.5, fill: { color: C.accentRed } });
s25.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 13.3, h: 1.1, fill: { color: C.midBg } });
s25.addShape(pres.ShapeType.rect, { x: 0, y: 1.1, w: 13.3, h: 0.07, fill: { color: C.accentGold } });
s25.addText('KEY TAKE-HOME MESSAGES', { x: 0.4, y: 0.12, w: 12.5, h: 0.85, fontSize: 26, bold: true, color: C.white, fontFace: 'Calibri', valign: 'middle' });
const msgs = [
{ icon: '✅', text: 'Test ALL pregnant women for HIV at first ANC — opt-out universal screening', color: C.accentGreen },
{ icon: '💊', text: 'Start ART IMMEDIATELY in all HIV+ pregnant women regardless of CD4 or trimester — do NOT delay', color: C.accentGold },
{ icon: '🎯', text: 'Goal: Undetectable viral load (< 50 copies/mL) by delivery — this is the single most important PMTCT measure', color: C.accentRed },
{ icon: '🆕', text: '2025 Update: BIC/TAF/FTC (Biktarvy) is now PREFERRED in pregnancy (DHHS June 2025). DTG+TDF/3TC remains preferred (WHO 2024)', color: C.accentBlue },
{ icon: '🤱', text: 'DTG is SAFE in pregnancy — NTD risk is NOT significantly elevated per 2024-25 meta-analyses', color: C.accentGreen },
{ icon: '🏥', text: 'VL < 1000 copies/mL = vaginal delivery safe. VL ≥ 1000 = elective cesarean at 38 weeks + IV AZT', color: C.accentGold },
{ icon: '👶', text: 'Neonatal PEP within 6-12 hrs; HIV DNA PCR (not antibody) for infant testing; avoid breastfeeding in HIC settings', color: C.accentRed },
{ icon: '🌐', text: 'U=U: Undetectable = Untransmittable. Treat the mother → Protect the baby → Break the chain of transmission', color: C.accentGreen },
];
msgs.forEach((m, i) => {
let col = i < 4 ? 0 : 1;
let row = i < 4 ? i : i - 4;
let x = col === 0 ? 0.3 : 6.85;
let y = 1.25 + row * 1.52;
s25.addShape(pres.ShapeType.rect, { x: x, y: y, w: 6.3, h: 1.35, fill: { color: '1F2D4A' }, line: { color: m.color, pt: 1.5 } });
s25.addText(m.icon, { x: x + 0.1, y: y, w: 0.7, h: 1.35, fontSize: 20, align: 'center', valign: 'middle', color: C.white });
s25.addText(m.text, { x: x + 0.85, y: y + 0.1, w: 5.3, h: 1.15, fontSize: 13, color: C.white, fontFace: 'Calibri', valign: 'middle', wrap: true });
});
s25.addShape(pres.ShapeType.rect, { x: 0, y: 7.2, w: 13.3, h: 0.3, fill: { color: '0D1B2A' } });
s25.addText('Sources: WHO 2024 | DHHS June 2025 | BHIVA 2025 | IAS-USA 2024-25 (JAMA) | Lancet 2025 | PMID: 39302585, 40652949, 38573155, 39616604, 38762199', {
x: 0.3, y: 7.2, w: 12.7, h: 0.3, fontSize: 10, color: '6B8CAE', fontFace: 'Calibri', italic: true
});
// Save
pres.writeFile({ fileName: '/home/daytona/workspace/hiv-pregnancy-ppt/HIV_in_Pregnancy_2025.pptx' })
.then(() => console.log('PPT saved successfully!'))
.catch(err => console.error('Error:', err));
cd /home/daytona/workspace/hiv-pregnancy-ppt && node create_ppt.js
ls -lh /home/daytona/workspace/hiv-pregnancy-ppt/HIV_in_Pregnancy_2025.pptx
HIV in Pregnancy 2025
Presentation · PPTX
| # | Slide | Content |
|---|---|---|
| 1 | Title Slide | HIV in Pregnancy — Comprehensive Review with 2025 Updates |
| 2 | Learning Objectives | 7 clear UG-level objectives |
| 3 | Section Header | Epidemiology |
| 4 | Global Epidemiology | UNAIDS 2024 data, India scenario, NACO stats |
| 5 | Section Header | Pathophysiology |
| 6 | HIV Biology & Immunopathology | Retrovirus structure, CD4 mechanism, natural history, pregnancy effects |
| 7 | Vertical Transmission Routes | In utero / Intrapartum / Postpartum with risk %, Lancet 2025 meta-analysis |
| 8 | Section Header | Antenatal Screening |
| 9 | HIV Testing in Pregnancy | Opt-out screening, repeat testing, India ICTC protocol, labour testing |
| 10 | Initial Workup Table | Viral load, CD4, resistance testing, co-infection screening, all investigations |
| 11 | Section Header | ART in Pregnancy |
| 12 | ART Principles | Why mandatory, goals, when to start, DHHS 2025 update on preterm birth |
| 13 | Preferred/Alternative ART Table | DTG+TDF/3TC, BIC/TAF/FTC (NEW June 2025), RAL, DRV/r, avoid list |
| 14 | Dolutegravir Safety 2025 | NTD concern updated, Payra 2024 meta-analysis, current WHO/DHHS stance |
| 15 | Section Header | PMTCT |
| 16 | 4 Prongs of PMTCT | WHO framework — prevention, unintended pregnancy, MTCT prevention, care |
| 17 | Antenatal Monitoring | VL monitoring schedule, CD4 targets, OI prophylaxis, vaccinations |
| 18 | Section Header | Intrapartum Management |
| 19 | Mode of Delivery | VL-guided decision: vaginal vs. cesarean, IV AZT indications, precautions |
| 20 | Section Header | Neonatal Care |
| 21 | Neonatal ARV Prophylaxis | Low vs. high-risk regimens, ZDV/NVP/3TC, BHIVA 2025 HIV-2 update |
| 22 | Infant Feeding & HIV Testing | Formula vs. breastfeeding by setting, HIV DNA PCR schedule, seroreversion |
| 23 | Obstetric Complications | Maternal/fetal complications, drug toxicities, psychiatric impact |
| 24 | Postpartum & Contraception | Lifelong ART, ART-contraceptive DDIs, PrEP, U=U concept |
| 25 | Key Take-Home Messages | 8 visual cards with core exam/clinical points |
Make ppt of 25 slides on topic HIV in pregnancy with new updates for undergraduate students
ls -lh /home/daytona/workspace/hiv-pregnancy-ppt/HIV_in_Pregnancy_2025.pptx
HIV in Pregnancy 2025
Presentation · PPTX
| Slides | Topic |
|---|---|
| 1–2 | Title slide + 7 Learning Objectives |
| 3–4 | Epidemiology — UNAIDS 2024, India/NACO data |
| 5–7 | Pathophysiology — HIV biology, CD4 mechanism, vertical transmission routes |
| 8–10 | Antenatal Screening — opt-out testing, ICTC protocol, full workup table |
| 11–14 | ART in Pregnancy — principles, preferred/alternative regimen table, DTG safety 2025 |
| 15–17 | PMTCT — WHO 4 Prongs framework, antenatal monitoring schedule |
| 18–19 | Intrapartum Management — VL-guided delivery mode, IV AZT, precautions |
| 20–22 | Neonatal Care — ARV prophylaxis regimens, infant feeding, HIV DNA PCR testing |
| 23–24 | Complications + Postpartum — obstetric risks, contraception, PrEP, U=U |
| 25 | 8 Key Take-Home Messages (visual card layout) |
I'm not able to download it
ls -lh /home/daytona/workspace/hiv-pregnancy-ppt/ && node /home/daytona/workspac…
HIV in Pregnancy 2025
Presentation · PPTX
i have tried everything
cd /home/daytona/workspace/hiv-pregnancy-ppt && libreoffice --headless --convert…
mkdir -p /home/daytona/workspace/hiv-out && cp /home/daytona/workspace/hiv-pregn…
chmod 777 /home/daytona/workspace/hiv-out && libreoffice --headless --convert-to…
ls -la /home/daytona/workspace/ && stat /home/daytona/workspace/hiv-pregnancy-pp…
cd /tmp && libreoffice --headless --convert-to pdf /home/daytona/workspace/hiv-p…
cp /tmp/HIV_in_Pregnancy_2025.pdf /home/daytona/workspace/hiv-pregnancy-ppt/HIV_…
HIV in Pregnancy 2025
PDF Document · PDF
HIV in Pregnancy 2025
Presentation · PPTX
web browser chrome
base64 /home/daytona/workspace/hiv-pregnancy-ppt/HIV_in_Pregnancy_2025.pptx | wc…
cat << 'EOF' > /home/daytona/workspace/hiv-pregnancy-ppt/download.html <!DOCTYPE…
download
HTML File · HTML
sharfunissakhalid1997@gmail.com
HIV in Pregnancy 2025
Presentation · PPTX
HIV in Pregnancy 2025
PDF Document · PDF
Try downloading the PDF version using right-click method
HIV in Pregnancy 2025
PDF Document · PDF