.breathing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.breathing-box {
    position: relative;
    width: 300px;
    height: 300px;
    border: 4px solid #e0e0e0;
    border-radius: 20px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breathing-text {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    text-align: center;
    transition: opacity 0.3s ease;
}

.breathing-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0073aa;
    border-radius: 50%;
    top: -12px;
    left: -12px;
    box-shadow: 0 0 10px rgba(0, 115, 170, 0.5);
}

/* Animation Classes */
.animate-breathing .breathing-dot {
    animation: moveAround 16s linear infinite;
}

@keyframes moveAround {
    0% {
        top: -12px;
        left: -12px;
    }

    /* Start Top-Left */
    25% {
        top: -12px;
        left: 292px;
    }

    /* Move Right (Inhale) */
    50% {
        top: 292px;
        left: 292px;
    }

    /* Move Down (Hold) */
    75% {
        top: 292px;
        left: -12px;
    }

    /* Move Left (Exhale) */
    100% {
        top: -12px;
        left: -12px;
    }

    /* Move Up (Hold) */
}

.start-btn {
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 18px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}

.start-btn:hover {
    background-color: #005177;
}