.ipm-cta-inner {
    background: #132866;
    border-radius: 20px;
    padding: 26px 40px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===============================
   LOGO SECTION
   =============================== */
.ipm-cta-logo {
    flex: 0 0 auto;
    animation: ipm-fadeInDown 0.8s ease-out;
}

.ipm-cta-logo img,
.ipm-cta-logo .ipm-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
}

.ipm-cta-logo img:hover,
.ipm-cta-logo .ipm-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

/* ===============================
   TEXT SECTION
   =============================== */
.ipm-cta-text {
    animation: ipm-fadeIn 0.8s ease-out 0.2s backwards;
}

.ipm-cta-desc {
    font-size: 20px;
    color: #ffff;
    line-height: 1.6;
    max-width: 500px;
}

/* ===============================
   CTA BUTTON SECTION
   =============================== */
.ipm-cta-action {
    animation: ipm-fadeInUp 0.8s ease-out 0.4s backwards;
}

.ipm-cta-btn {
    display: inline-block;
   background-image: linear-gradient(180deg, #E227C8 0%, #A01C8E 100%);
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ipm-cta-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.ipm-cta-btn:active {
    transform: translateY(-1px);
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes ipm-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ipm-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes ipm-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    .ipm-cta-inner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .ipm-cta-desc {
        font-size: 16px;
    }

    .ipm-cta-logo img,
    .ipm-cta-logo .ipm-logo {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}