  /* The Dark Overlay */
    .modal-overlay {
        display: none; 
        position: fixed;
        z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
    }

    /* The White Box */
    .modal-content {
        background-color: #fff;
        width: 90%;
        max-width: 750px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        position: relative;
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .show-modal { display: flex !important; }

    .close-btn {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        z-index: 100;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .close-btn:hover { color: #f1f1f1; transform: scale(1.1); }

    /* --- 2. The Sky & Dove Animation --- */
    .sky-container {
        height: 90px;
        background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
        position: relative;
        overflow: hidden;
    }

    /* The Dove SVG Settings */
    .dove-svg {
        position: absolute;
        fill: white;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    }

    /* Dove 1 (Larger, Foreground) */
    .dove-1 {
        width: 70px; /* Increased size slightly */
        top: 25%;
        left: -100px; /* Start off screen */
        animation: flyPass 8s linear infinite;
    }

    /* Dove 2 (Smaller, Background) */
    .dove-2 {
        width: 50px;
        top: 55%;
        left: -100px;
        opacity: 0.8;
        animation: flyPass 8s linear infinite 2s; /* Delayed start */
    }

    /* Clouds (Optional Decoration) */
    .cloud {
        position: absolute;
        background: rgba(255,255,255,0.4);
        border-radius: 50%;
        filter: blur(5px);
    }
    .c1 { width: 80px; height: 80px; top: 100px; right: -20px; }
    .c2 { width: 50px; height: 50px; top: 40px; left: 20%; }

    /* --- 3. The Poster Text --- */
    .text-section {
        padding: 25px 30px;
        text-align: center;
        background: white;
        border-top: 5px solid #fdcb6e; /* Accent color */
    }
    
    .headline {
        margin: 0;
        color: #2d3436;
        font-size: 28px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 1px;
		text-align:center
    }

    .sub-headline {
        color: #d63031; 
        font-weight: bold;
        font-size: 16px;
        margin-top: 5px;
        display: block;
    }

    .body-text {
        color: #636e72;
        font-size: 15px;
        line-height: 1.5;
        margin: 15px 0 20px 0;
    }

    .cta-button {
        background-color: #0984e3;
        color: white;
        border: none;
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 25px;
        cursor: pointer;
        font-weight: bold;
        transition: transform 0.2s, background 0.2s;
    }
    .cta-button:hover {
        background-color: #74b9ff;
        transform: translateY(-2px);
    }

    /* --- 4. Keyframes --- */
    @keyframes popIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    @keyframes flyPass {
        0% { 
            left: -100px; 
            transform: translateY(0) rotate(5deg); 
        }
        50% { 
            /* Subtle vertical bobbing motion */
            transform: translateY(10px) rotate(0deg); 
        }
        100% { 
            left: 120%;
            transform: translateY(0) rotate(-5deg); 
        }
    }
</style>
