/* Image with Pulse Animation Styles */

/* Outer circle container */
.circle {
    position: absolute;
    top: -155px;
    /* left: 40%; */
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Circle pulse effect spans */
.circle span {
    position: absolute;
    width: 70%;
    height: 70%;
    background: red;
    border-radius: inherit;
    opacity: 0.5;
    animation: circleAnimate 3s ease-out infinite;
    animation-delay: calc(1s * var(--i));
}

/* Circle animate keyframe for pulse effect */
@keyframes circleAnimate {
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Inner circle with image */
.circle-inner {
    width: 280px;
    height: 280px;
    background-color: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image inside circle */
.circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* Icon with pulse animation */
.icon1 {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    padding: 12px;
    background-color: white;
    display: flex;
    justify-content: center;
    box-shadow: #ff0000 0px 0px 0px 0px,
        #ff0000 0px 0px 0px 0px, 
        rgba(255, 0, 0, 0.2) 0px 0px 0px 10px,
        rgba(255, 0, 0, 0.15) 0px 0px 0px 20px, 
        rgba(255, 0, 0, 0.1) 0px 0px 0px 30px;
}

/* Icon hover pulse animation */
.icon1:hover {
    animation: pulse 1.5s infinite;
}

/* Icon link inside icon1 */
.icon1 a {
    font-size: 50px;
    color: #007e9b;
}

/* Pulse keyframe animation */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Price circle (alternate circle styling) */
.price-circle {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
    padding-top: 32px;
}

/* Price circle pulse spans */
.price-circle span {
    position: absolute;
    width: 75%;
    height: 75%;
    background: red;
    border-radius: inherit;
    opacity: 0.5;
    animation: circleAnimate 3s ease-out infinite;
    animation-delay: calc(1s * var(--i));
    top: 29%;
}

/* Responsive styles for circle - tablet */
@media (max-width: 780px) {
    .circle {
        width: 230px;
        height: 230px;
        top: -110px;
    }

    .circle-inner {
        width: 190px;
        height: 190px;
    }
}

/* Responsive styles for circle - mobile */
@media (max-width: 320px) {
    .circle {
        width: 180px;
        height: 180px;
        top: -90px;
    }

    .circle-inner {
        width: 150px;
        height: 150px;
    }

    .icon1 i {
        font-size: 1.6rem;
    }

    .icon1 {
        width: 64px;
        height: 62px;
        margin-bottom: 70px;
    }

    .icon1 a {
        font-size: 30px;
    }
}
