

.bubbleDrop {
    --card-shape: 48% 52% 58% 42% / 48% 25% 75% 52%;
    --card-hover-shape: 50%;
    --heading-shape: 50%;
    --heading-hover-shape: 61% 39% 38% 62% / 67% 49% 51% 33%;
    --heading-background: #eff0f4;
    --heading-circle-size: 80px;
    --bubble-color: #ffffff;
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05), 25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05), inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    position: relative;
    transition: 0.5s ease-in-out;
    border-radius: var(--card-shape);
    padding: 20px;
    margin: 20px;
    width: 350px; /* Fixed width */
    height: 350px; /* Fixed height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bubbleDrop h2 {
    margin-bottom: 10px;
    color: red;
    text-align: center;
}

.bubbleDrop p {
    margin-bottom: 20px;
    text-align: center;
}

.bubbleDrop .button {
    background-color: red;
    text-align: center;
    width: 130px;
    height: 40px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
}

.bubbleDrop:hover,
.bubbleDrop.active {
    border-radius: var(--card-hover-shape);
}

.bubbleDrop::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 85px;
    width: 35px;
    height: 35px;
    background: var(--bubble-color);
    border-radius: 50%;
    opacity: 0.9;
}

.bubbleDrop::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 110px;
    width: 15px;
    height: 15px;
    background: var(--bubble-color);
    border-radius: 50%;
    opacity: 0.9;
}