/* ==========================================================================
   CSS VARIABLES & THEME
   ========================================================================== */
:root {
    /* Light Theme (Default fallback) */
    --bg-main: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --accent: #0066cc;
    --accent-hover: #0077ed;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    
    /* Semantic colors */
    --red: #ff3b30;
    --green: #34c759;
    --blue: #007aff;
    --yellow: #ffcc00;
    --pink: #ff2d55;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-secondary);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.giant-text {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.text-large { font-size: 1.25rem; }
.text-xl { font-size: 1.5rem; }
.text-2xl { font-size: 2rem; }
.text-3xl { font-size: 2.5rem; }
.text-4xl { font-size: 3rem; }
.text-5xl { font-size: 4rem; }

.font-light { font-weight: 300; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.text-center { text-align: center; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #b245ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Utility Colors */
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-yellow { color: var(--yellow); }
.text-pink { color: var(--pink); }
.text-gray { color: var(--text-secondary); }
.text-accent { color: var(--accent); }
.text-dark { color: #000 !important; }
.text-white { color: #fff !important; }

.bg-red { background-color: var(--red); }
.bg-blue { background-color: var(--blue); }
.bg-yellow { background-color: var(--yellow); color: #000; }
.bg-green { background-color: var(--green); }
.bg-accent { background-color: var(--accent); }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.content-container {
    max-w-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr; }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
    .grid-4-col { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-max { width: max-content; }
.min-w-64 { min-width: 256px; }

/* Spacing */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-32 { padding-bottom: 8rem; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-12 { gap: 3rem; }

/* ==========================================================================
   UI COMPONENTS (GLASSMORPHISM, CARDS, BUTTONS)
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.glass-panel-large {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.border-accent { border-color: var(--accent) !important; }
.border-red { border-color: var(--red) !important; }

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.pill-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--bg-secondary);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--glass-border);
}

.pill-badge.accent {
    background: rgba(41, 151, 255, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.icon-btn:hover {
    background: var(--bg-secondary);
}

.huge-icon {
    font-size: 4rem;
}

/* ==========================================================================
   NAVIGATION & PROGRESS
   ========================================================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: transform 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 101;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s ease;
}

/* Slide Controls (Bottom) */
.slide-controls {
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PRESENTATION LAYOUT & SLIDES
   ========================================================================== */
.presentation-wrapper {
    display: block;
}

.slide {
    min-height: 100vh;
    padding: 100px 0 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.center-slide {
    align-items: center;
    text-align: center;
}

/* Section Specific Styles */
.hero-slide {
    background: radial-gradient(circle at 50% 50%, var(--bg-secondary) 0%, var(--bg-main) 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

.speaker-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 1 / 1;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-card {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--glass-border);
}

.huge-question {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.3;
}

.intro-statements .statement {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.statement-grid .glass-card {
    font-size: 1.2rem;
    font-weight: 700;
}

.mind-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.mind-grid .glass-panel {
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 250px;
}

/* Marquee */
.examples-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
    background: var(--bg-secondary);
    border-radius: 50px;
    margin-left: -2rem;
    margin-right: -2rem;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
}

.marquee-content span {
    margin: 0 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Activities */
.lottie-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.questions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.question-item {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.question-item.highlight {
    background: var(--accent);
    transform: scale(1.1);
    margin-top: 1rem;
}

.action-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.action-step {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-step span {
    background: var(--accent);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}
.action-step.highlight { border: 2px solid var(--accent); }

/* Fail Grid */
.fail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.fail-grid .glass-card {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.fail-grid .glass-card i { font-size: 2.5rem; }

/* Timeline Horizontal */
.timeline {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    gap: 2rem;
    scrollbar-width: none;
}
.timeline::-webkit-scrollbar { display: none; }

.timeline-item {
    min-width: 200px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: -1;
}
.timeline-year {
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0 auto 1.5rem auto;
}
.timeline-content { text-align: center; font-weight: 700; }
.timeline-item.highlight .timeline-year {
    background: var(--accent);
    color: #fff;
    transform: scale(1.2);
}

/* Case Studies */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.case-study-card {
    padding: 2rem;
    text-align: left;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Winners */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.winner-item {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100px;
}

/* AI Demo */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.tool-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}
.tool-card i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}
.tool-card:hover { background: var(--glass-border); }

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.demo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Marketing Infographic */
.marketing-infographic {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dm-circle {
    position: absolute;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 700;
}
.center-circle {
    z-index: 10;
    font-size: 1.5rem;
    padding: 2rem 3rem;
}
.item-1 { transform: translateY(-120px); }
.item-2 { transform: translateX(120px) translateY(-80px); }
.item-3 { transform: translateX(140px); }
.item-4 { transform: translateX(120px) translateY(80px); }
.item-5 { transform: translateY(120px); }
.item-6 { transform: translateX(-120px) translateY(80px); }
.item-7 { transform: translateX(-140px); }
.item-8 { transform: translateX(-120px) translateY(-80px); }

/* Wealth Path */
.wealth-path { overflow-x: auto; padding-bottom: 1rem; }
.path-item {
    min-width: 150px;
    text-align: center;
    padding: 1.5rem 1rem;
}
.path-arrow {
    flex-shrink: 0;
}
.step-chip {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

/* BMC */
.bmc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.col-span-1-5 { grid-column: span 2.5; } /* Approx */
@media (max-width: 768px) {
    .bmc-grid { grid-template-columns: 1fr; }
    .col-span-1-5 { grid-column: span 1; }
}
.bmc-item {
    border-radius: 8px;
    border-color: var(--glass-border);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bmc-item i { font-size: 1.5rem; color: var(--accent); }

/* Books */
.books-carousel {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { scrollbar-width: none; }
.book-cover { height: 200px; width: 140px; }

/* Contact Form */
.form-group label {
    display: block;
}
.form-control {
    width: 100%;
    color: var(--text-main);
}
.form-control::placeholder { color: var(--text-secondary); }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
}
.pulse-anim {
    animation: shadow-pulse 2s infinite;
}
@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(52, 199, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

/* ==========================================================================
   ANIMATIONS (GSAP Initial States)
   ========================================================================== */
.reveal-text, .reveal-img, .reveal-scale, .reveal-fade, .reveal-slide-up, .reveal-slide-right, .reveal-slide-left, .reveal-stagger > * {
    opacity: 0;
    visibility: hidden;
}

/* Backgrounds */
.parallax-bg {
    background-image: radial-gradient(circle at 10% 20%, rgba(41, 151, 255, 0.1) 0%, transparent 40%);
}
.parallax-bg-2 {
    background-image: radial-gradient(circle at 90% 80%, rgba(178, 69, 255, 0.1) 0%, transparent 40%);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS FIXES
   ========================================================================== */
@media (max-width: 768px) {
    /* Typography */
    .hero-title { font-size: 2.5rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .giant-text { font-size: 3rem; }
    
    /* Header & Nav */
    .glass-nav { position: absolute; height: auto; padding: 10px 0; }
    .nav-content { flex-direction: column; gap: 15px; padding: 0 1rem; }
    .nav-controls { flex-wrap: wrap; justify-content: center; width: 100%; gap: 10px; }
    .btn-primary { flex: 1; min-width: 130px; padding: 10px 12px; font-size: 14px; text-align: center; justify-content: center; display: flex; align-items: center; }
    
    /* Layout & Slides */
    .slide { min-height: auto; padding: 100px 0 40px 0; }
    .hero-slide { min-height: 100vh; padding-top: 140px; display: flex; align-items: flex-start; }
    .content-container { width: 92%; padding: 0; }
    .grid-2-col, .grid-4-col { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Reduce blank spaces in Journey and Books */
    .journey-timeline { margin-top: 2rem; padding-left: 1rem; margin-left: 0.5rem; }
    .books-carousel { padding-bottom: 20px; }
    .book-card { min-width: 220px; padding: 1rem; }
    .book-cover { height: 160px; width: 110px; padding: 1rem; }
    
    /* Fix any overflowing elements causing right slide */
    img { max-width: 100%; height: auto; }
    .presentation-wrapper { overflow-x: hidden; width: 100%; }
    
    /* Form & Floating buttons */
    .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .btn-primary { width: 100%; flex: none; }
}

/* ==========================================================================
   CERTIFICATE & MODAL STYLES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    padding-top: 10vh;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.certificate-layout {
    width: 1123px; /* A4 Landscape */
    height: 794px;
    background: #ffffff;
    color: #111;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.cert-border-outer {
    border: 10px solid #3da842;
    padding: 10px;
    height: 100%;
    box-sizing: border-box;
    background: #ffffff;
}
.cert-border-inner {
    border: 2px solid #3da842;
    height: 100%;
    position: relative;
    padding: 30px 60px 60px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.cert-logo-signature {
    display: block;
    margin: 0 auto 5px auto;
    height: 50px;
    width: auto;
}
.cert-header { text-align: center; margin-top: 5px; }
.cert-title { font-size: 42px; letter-spacing: 6px; margin: 0; color: #1d1d1f; font-family: 'Georgia', serif; font-weight: 800; text-transform: uppercase; }
.cert-subtitle { font-size: 14px; letter-spacing: 4px; color: #86868b; margin-top: 10px; font-weight: 600; text-transform: uppercase; }
.cert-name { text-align: center; font-size: 72px; font-family: 'Georgia', serif; font-style: italic; color: #3da842; margin: 20px 0; font-weight: bold; line-height: 1.2; }
.cert-body { text-align: center; max-width: 800px; margin: 10px auto; }
.cert-body p { font-size: 18px; color: #555; margin-bottom: 10px; }
.cert-body h3 { font-size: 32px; margin: 15px 0; font-weight: 900; color: #1d1d1f; letter-spacing: 2px; text-transform: uppercase; }
.cert-conducted { font-size: 20px !important; color: #3da842 !important; margin-top: 5px; font-weight: bold; }
.cert-details { font-size: 14px !important; color: #86868b !important; }
.cert-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding: 0; }
.cert-signature, .cert-date { width: 220px; text-align: center; }
.signature-text { font-family: 'Georgia', serif; font-style: italic; font-size: 32px; color: #111; margin-bottom: 5px; }
.date-text { font-size: 22px; font-weight: bold; color: #111; margin-bottom: 5px; font-family: 'Inter', sans-serif; }
.cert-line { height: 1px; background-color: #ccc; margin: 10px 0; }
.cert-footer p { font-size: 14px; color: #86868b; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cert-qr-container { background: white; padding: 10px; border-radius: 12px; margin-bottom: 0px; }
.cert-qr-text { font-size: 14px; margin-top: 8px; font-weight: bold; color: #555; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cert-bottom-bar { position: absolute; bottom: 20px; left: 60px; right: 60px; display: flex; justify-content: space-between; font-size: 16px; font-weight: bold; color: #111; }
