/* Card */
.imran-cta-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    overflow: hidden;

    width: 270px;
    max-width: 270px;
    margin: 0 auto;
}

/* Image Section */
.imran-cta-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.imran-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* White fade overlay */
.imran-cta-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        #ffffff 85%
    );
}

/* Badge */
.imran-cta-badge {
    position: absolute;
    top: 2px;
    right: 14px;
    background: #0b2a57;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
}

/* Content */
.imran-cta-content {
    padding: 18px 18px 22px;
    text-align: left;
}

.imran-cta-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0b2a57;
    margin: 0 0 10px;
    line-height: 1.2;
}

.imran-cta-content p {
    font-size: 14px;
    color: #5a677a;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Button */
.imran-cta-btn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #061c3f, #0b2a57);
    color: #ffffff !important;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
    padding: 10px 56.24px 10px 56.23px;
    font-size: 14px;
}

.imran-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11,42,87,0.35);
}
@media (max-width: 480px) {
    .imran-cta-card {
        width: 100%;
        max-width: 100%;
    }
}
