@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.pulse-dot {
    animation: pulseDot 2s ease-in-out infinite; /* increased from 1.5s to 3s */
}


.responsive-img {
    width: 100%;
    height: auto;
    display: block;

}

.cursor {
    display: inline-block;
    animation: blink 0.7s steps(2, start) infinite;
    color: #555;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .responsive-img {
        height: 400px !important;
    }
}

.learn-more-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 13.25rem;
    height: auto;
}

.learn-more-button .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

.learn-more-button .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.learn-more-button .circle .icon.arrow {
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more-button .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.learn-more-button .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 2.6rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.learn-more-button:hover .circle {
    width: 100%;
}

.learn-more-button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.learn-more-button:hover .button-text {
    color: #fff;
}

.explore-btn {
    width: 173px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /*background-color: var(--tw-bg-opacity, 1) theme('colors.primary'); !* tailwind-compatible *!*/
    background-color: rgb(59, 130, 246); /* fallback to blue-500 */
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.5s, transform 0.2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    padding-left: 8px;
    padding-right: 16px;
}

.explore-btn .svgIcon {
    height: 25px;
    transition: transform 1.5s;
}

.explore-btn:hover {
    background-color: rgb(96, 165, 250); /* lighter hover - like Tailwind blue-400 */
}

.explore-btn:active {
    transform: scale(0.97);
}

.explore-btn:hover .svgIcon {
    transform: rotate(250deg);
}

.explore-btn svg path {
    fill: white;
}
