
    /* ========== 1. CSS Variables ========== */
    :root {
        --primary: #0a4d8c;
        --primary-dark: #042449;
        --primary-light: #e8f2fb;
        --secondary: #1e3a5f;
        --accent: #2563eb;
        --accent-light: #60a5fa;
        --gold: #d4af37;
        --white: #ffffff;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --text: #0f172a;
        --text-light: #64748b;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        --gradient-primary: linear-gradient(135deg, #0a4d8c 0%, #1e3a5f 100%);
        --gradient-accent: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
        font-family: 'Prompt', 'Inter', system-ui, -apple-system, sans-serif;
        overflow-x: hidden;
    }

    /* ========== 2. Background Orbs ========== */
    .bg-orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }

    .bg-orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--accent-light), transparent);
        top: -200px;
        right: -100px;
    }

    .bg-orb-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--primary-light), transparent);
        bottom: -200px;
        left: -150px;
    }

    /* ========== 3. Animation Keyframes ========== */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLeft {
        from { opacity: 0; transform: translateX(-40px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(40px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @keyframes scaleIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }

    @keyframes slideInDown {
        from { opacity: 0; transform: translateY(-50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ========== 4. Animation Classes ========== */
    .animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
    .animate-fade-left { animation: fadeInLeft 0.8s ease forwards; }
    .animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
    .animate-scale { animation: scaleIn 0.6s ease forwards; }
    .animate-slide-down { animation: slideInDown 0.7s ease forwards; }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .delay-5 { animation-delay: 0.5s; }

    /* Scroll Reveal */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

    .scroll-reveal-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .scroll-reveal-left.revealed { opacity: 1; transform: translateX(0); }

    .scroll-reveal-right {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .scroll-reveal-right.revealed { opacity: 1; transform: translateX(0); }

    .scroll-reveal-scale {
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .scroll-reveal-scale.revealed { opacity: 1; transform: scale(1); }

    /* ========== 5. Hero Section ========== */
    .hero-section {
        position: relative;
        background: var(--gradient-primary);
        padding: 80px 0 100px;
        overflow: hidden;
        z-index: 1;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, var(--gray-50), transparent);
        z-index: 2;
    }

    .hero-floating {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
        border-radius: 50%;
        top: -150px;
        left: -100px;
        animation: float 20s infinite ease-in-out;
    }

    .hero-floating-2 {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
        border-radius: 50%;
        bottom: -80px;
        right: 10%;
        animation: float 15s infinite ease-in-out reverse;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, 20px) rotate(5deg); }
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        color: var(--accent-light);
        padding: 6px 20px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    word-break: keep-all;
   }

    /* ========== 6. Timeline Section ========== */
    .timeline-section {
        position: relative;
        padding: 60px 0 80px;
        z-index: 2;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-light), rgba(37, 99, 235, 0.1));
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .section-divider {
        width: 80px;
        height: 4px;
        background: var(--gradient-accent);
        margin: 0 auto;
        border-radius: 4px;
    }

    /* Modern Timeline */
    .timeline-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-light), var(--accent-light), var(--primary-light));
        border-radius: 3px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 60px;
        display: flex;
        align-items: center;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        background: var(--white);
        border: 3px solid var(--primary);
        border-radius: 50%;
        z-index: 10;
        transition: var(--transition);
    }

    .timeline-item:hover .timeline-dot {
        background: var(--accent);
        border-color: var(--accent);
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
        transform: translateX(-50%) scale(1.2);
    }

    .timeline-date {
        width: 50%;
        text-align: right;
        padding-right: 60px;
    }

    .timeline-content {
        width: 50%;
        padding-left: 60px;
    }

    .date-card {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        padding: 12px 28px;
        border-radius: 60px;
        font-weight: 700;
        font-size: 1.3rem;
        letter-spacing: 1px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

    .timeline-item:hover .date-card {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }

    .content-card {
        background: var(--white);
        border-radius: 20px;
        padding: 24px 28px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        border: 1px solid var(--gray-200);
        position: relative;
        overflow: hidden;
    }

    .content-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
    }

    .timeline-item:hover .content-card {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

    .content-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .content-description {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.7;
        margin: 0;
    }

    .content-description + .content-title {
        margin-top: 16px;
    }

    .timeline-item.right {
        flex-direction: row-reverse;
    }

    .timeline-item.right .timeline-date {
        text-align: left;
        padding-right: 0;
        padding-left: 60px;
    }

    .timeline-item.right .timeline-content {
        padding-left: 0;
        padding-right: 60px;
    }

    /* ========== 7. Present Section ========== */
    .present-section {
        background: linear-gradient(135deg, var(--primary-light), var(--white));
        border-radius: 28px;
        padding: 40px;
        margin-top: 60px;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .present-icon {
        width: 70px;
        height: 70px;
        background: var(--gradient-primary);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 32px;
    }

    .present-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .present-description {
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.8;
    }

    /* ========== 8. Floating CTA ========== */
    .floating-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 100;
    }

    .cta-button {
        width: 56px;
        height: 56px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        cursor: pointer;
        border: none;
        text-decoration: none;
    }

    .cta-button:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-2xl);
    }

    /* ========== 9. Responsive ========== */
    @media (max-width: 991px) {
        .hero-title { font-size: 2.2rem; }
        .timeline-container::before { left: 30px; }
        .timeline-item { flex-direction: column !important; align-items: flex-start; padding-left: 60px; }
        .timeline-dot { left: 30px; transform: translateX(-50%); top: 30px; }
        .timeline-date { width: 100%; text-align: left !important; padding: 0 0 16px 0 !important; margin-bottom: 0; }
        .timeline-content { width: 100%; padding: 0 !important; }
        .date-card { font-size: 1rem; padding: 8px 20px; }
        .content-card { padding: 20px; }
        .present-section { padding: 28px; }
    }

    @media (max-width: 767px) {
        .hero-section { padding: 60px 0 80px; }
        .hero-title { font-size: 1.6rem; }
        .hero-subtitle { font-size: 0.95rem; }
        .section-title { font-size: 1.5rem; }
        .timeline-container::before { left: 20px; }
        .timeline-item { padding-left: 45px; }
        .timeline-dot { left: 20px; width: 16px; height: 16px; }
        .content-title { font-size: 1.1rem; }
        .content-description { font-size: 0.85rem; }
        .present-section { padding: 20px; }
        .present-icon { width: 50px; height: 50px; font-size: 24px; }
        .present-title { font-size: 1.2rem; }
        .present-description { font-size: 0.9rem; }
        .floating-cta { bottom: 20px; right: 20px; }
        .cta-button { width: 48px; height: 48px; font-size: 20px; }
    }

    @media (max-width: 480px) {
        .hero-title { font-size: 1.3rem; }
        .hero-badge { font-size: 0.7rem; padding: 4px 14px; }
        .date-card { font-size: 0.85rem; padding: 6px 16px; }
        .content-card { padding: 16px; }
    }